chore(): Migrates the build to the new pipeline

This commit is contained in:
Elia el Lazkani 2023-07-01 20:12:18 +02:00
parent 9542d48a83
commit 7a5b3b6c51

View file

@ -1,25 +1,59 @@
--- ---
kind: pipeline kind: pipeline
type: docker name: container-check
name: Build
steps: steps:
- name: build - name: check-build
image: docker:dind image: plugins/docker
volumes: settings:
- name: docker-socket registry: scm.project42.io
path: /var/run/docker.sock dockerfile: Dockerfile
commands: username:
- docker build -t "nikola:${DRONE_TAG}" /drone/src/ from_secret: registry_username
password:
from_secret: registry_password
repo: scm.project42.io/elia/nikola
dry_run: true
squash: true
tags:
- "${DRONE_COMMIT_SHA:0:8}"
trigger:
exclude:
event:
- promote
---
kind: pipeline
name: container-build
steps:
- name: build-latest
image: plugins/docker
settings:
registry: scm.project42.io
dockerfile: Dockerfile
username:
from_secret: registry_username
password:
from_secret: registry_password
repo: scm.project42.io/elia/nikola
dry_run: true
squash: true
tags:
- latest
- "${DRONE_COMMIT_SHA:0:8}"
when: when:
event: event:
- tag - promote
target:
- production
depends_on:
- container-check
volumes:
- name: docker-socket
host:
path: /var/run/docker.sock
trigger: trigger:
event: event:
- tag - promote
target:
- production