Fix docker multiarch build
This commit is contained in:
parent
894d35e4fe
commit
f324e3fb28
1 changed files with 8 additions and 1 deletions
|
@ -269,6 +269,7 @@ steps:
|
|||
|
||||
kind: pipeline
|
||||
name: release
|
||||
|
||||
depends_on:
|
||||
- testing
|
||||
|
||||
|
@ -507,6 +508,9 @@ kind: pipeline
|
|||
type: docker
|
||||
name: docker-arm-release
|
||||
|
||||
depends_on:
|
||||
- testing
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: arm
|
||||
|
@ -531,7 +535,7 @@ steps:
|
|||
from_secret: docker_password
|
||||
repo: vikunja/api
|
||||
auto_tag: true
|
||||
auto_tag_suffix: linux-arm64
|
||||
auto_tag_suffix: linux-arm
|
||||
depends_on: [ fetch-tags ]
|
||||
|
||||
---
|
||||
|
@ -539,6 +543,9 @@ kind: pipeline
|
|||
type: docker
|
||||
name: docker-amd64-release
|
||||
|
||||
depends_on:
|
||||
- testing
|
||||
|
||||
platform:
|
||||
os: linux
|
||||
arch: amd64
|
||||
|
|
Loading…
Reference in a new issue