From d9827f0ccf919376b980d7571917914f907bf86e Mon Sep 17 00:00:00 2001 From: Adrien Date: Thu, 11 Apr 2024 09:13:54 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20First=20try=20to=20setup=20the?= =?UTF-8?q?=20CI=20to=20deliver=20web=20docker=20image=20to=20registry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .woodpecker/.deploy.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .woodpecker/.deploy.yaml diff --git a/.woodpecker/.deploy.yaml b/.woodpecker/.deploy.yaml new file mode 100644 index 0000000..6ea2b9f --- /dev/null +++ b/.woodpecker/.deploy.yaml @@ -0,0 +1,16 @@ +steps: +- name: publish + image: woodpeckerci/plugin-kaniko + settings: + registry: rg.fr-par.scw.cloud + repo: rg.fr-par.scw.cloud/asr-projects + tags: ${CI_COMMIT_SHA} + cache: true + build_args: + - COMMIT_SHA=${CI_COMMIT_SHA} + - COMMIT_AUTHOR_EMAIL=${CI_COMMIT_AUTHOR_EMAIL} + username: + from_secret: registry-username + password: + from_secret: registry-password + debug: true