Work around auto tag for main branch
This commit is contained in:
parent
26d9f8d365
commit
e8d7ea8586
1 changed files with 21 additions and 7 deletions
26
.drone.yml
26
.drone.yml
|
@ -328,8 +328,7 @@ steps:
|
||||||
password:
|
password:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
repo: vikunja/frontend
|
repo: vikunja/frontend
|
||||||
auto_tag: true
|
tags: latest-linux-arm
|
||||||
auto_tag_suffix: linux-arm
|
|
||||||
build_args:
|
build_args:
|
||||||
- USE_RELEASE=true
|
- USE_RELEASE=true
|
||||||
- RELEASE_VERSION=unstable
|
- RELEASE_VERSION=unstable
|
||||||
|
@ -368,8 +367,7 @@ steps:
|
||||||
password:
|
password:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
repo: vikunja/frontend
|
repo: vikunja/frontend
|
||||||
auto_tag: true
|
tags: latest-linux-arm64
|
||||||
auto_tag_suffix: linux-arm64
|
|
||||||
build_args:
|
build_args:
|
||||||
- USE_RELEASE=true
|
- USE_RELEASE=true
|
||||||
- RELEASE_VERSION=unstable
|
- RELEASE_VERSION=unstable
|
||||||
|
@ -427,8 +425,7 @@ steps:
|
||||||
password:
|
password:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
repo: vikunja/frontend
|
repo: vikunja/frontend
|
||||||
auto_tag: true
|
tags: latest-linux-amd64
|
||||||
auto_tag_suffix: linux-amd64
|
|
||||||
build_args:
|
build_args:
|
||||||
- USE_RELEASE=true
|
- USE_RELEASE=true
|
||||||
- RELEASE_VERSION=unstable
|
- RELEASE_VERSION=unstable
|
||||||
|
@ -469,6 +466,20 @@ depends_on:
|
||||||
- docker-arm-release
|
- docker-arm-release
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: manifest
|
||||||
|
pull: always
|
||||||
|
image: plugins/manifest
|
||||||
|
settings:
|
||||||
|
tags: latest
|
||||||
|
spec: docker-manifest.tmpl
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/heads/main
|
||||||
|
|
||||||
- name: manifest
|
- name: manifest
|
||||||
pull: always
|
pull: always
|
||||||
image: plugins/manifest
|
image: plugins/manifest
|
||||||
|
@ -480,6 +491,9 @@ steps:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
username:
|
username:
|
||||||
from_secret: docker_username
|
from_secret: docker_username
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- "refs/tags/**"
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
|
Loading…
Reference in a new issue