From ff372f7acadcc93eb931007629a17bfab8e639e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Wysoki=C5=84ski?= Date: Sun, 25 Sep 2022 13:36:12 +0200 Subject: [PATCH] add .drone.yml --- .drone.yml | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++ manifest.tmpl | 15 +++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 .drone.yml create mode 100644 manifest.tmpl diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..4e6b17b --- /dev/null +++ b/.drone.yml @@ -0,0 +1,59 @@ +--- +kind: pipeline +type: docker +name: linux-amd64 + +platform: + os: linux + arch: amd64 + +steps: + - name: publish + image: plugins/docker + settings: + username: + from_secret: docker_username + password: + from_secret: docker_password + registry: gitea.dwysokinski.me + repo: gitea.dwysokinski.me/zdam-egzamin-zawodowy-docker/admin-panel + auto_tag: true + auto_tag_suffix: linux-amd64 + dockerfile: Dockerfile + +trigger: + event: + - tag +--- +kind: pipeline +type: docker +name: manifest + +steps: + - name: manifest + image: plugins/manifest + settings: + auto_tag: "true" + ignore_missing: "true" + spec: manifest.tmpl + username: + from_secret: docker_username + password: + from_secret: docker_password + - name: manifest-latest + image: plugins/manifest + settings: + tags: latest + ignore_missing: "true" + spec: manifest.tmpl + username: + from_secret: docker_username + password: + from_secret: docker_password + +trigger: + event: + - tag + +depends_on: + - linux-amd64 diff --git a/manifest.tmpl b/manifest.tmpl new file mode 100644 index 0000000..7b6207c --- /dev/null +++ b/manifest.tmpl @@ -0,0 +1,15 @@ + +414 B +image: gitea.dwysokinski.me/zdam-egzamin-zawodowy-docker/admin-panel:{{#if build.tag}}{{trimPrefix "v" build.tag}}{{else}}latest{{/if}} +{{#if build.tags}} +tags: +{{#each build.tags}} + - {{this}} +{{/each}} +{{/if}} +manifests: + - + image: gitea.dwysokinski.me/zdam-egzamin-zawodowy-docker/admin-panel:{{#if build.tag}}{{trimPrefix "v" build.tag}}-{{/if}}linux-amd64 + platform: + architecture: amd64 + os: linux