From ec71986ad4ea560c1f26e61bf53ba496754c42dc Mon Sep 17 00:00:00 2001 From: Johanne TROTIN Date: Sun, 30 Mar 2025 17:46:54 +0200 Subject: [PATCH] =?UTF-8?q?T=C3=A9l=C3=A9verser=20les=20fichiers=20vers=20?= =?UTF-8?q?"/"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- drone.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 drone.yaml diff --git a/drone.yaml b/drone.yaml new file mode 100644 index 0000000..5d3c0a5 --- /dev/null +++ b/drone.yaml @@ -0,0 +1,20 @@ +kind: pipeline +type: docker +name: Build & publish docker image + +steps: +- name: publish-image + pull: always + image: plugins/kaniko:1.7.1-kaniko1.9.1 + settings: + tags: ${DRONE_TAG##v} + registry: code.groupe-genes.fr + repo: code.groupe-genes.fr/labeds/cours_nunez + username: + from_secret: docker_username + password: + from_secret: docker_password + when: + event: + - tag +