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
|
kind: pipeline
|
||||||
name: release
|
name: release
|
||||||
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- testing
|
- testing
|
||||||
|
|
||||||
|
@ -507,6 +508,9 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: docker-arm-release
|
name: docker-arm-release
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- testing
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
arch: arm
|
arch: arm
|
||||||
|
@ -531,7 +535,7 @@ steps:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
repo: vikunja/api
|
repo: vikunja/api
|
||||||
auto_tag: true
|
auto_tag: true
|
||||||
auto_tag_suffix: linux-arm64
|
auto_tag_suffix: linux-arm
|
||||||
depends_on: [ fetch-tags ]
|
depends_on: [ fetch-tags ]
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -539,6 +543,9 @@ kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: docker-amd64-release
|
name: docker-amd64-release
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- testing
|
||||||
|
|
||||||
platform:
|
platform:
|
||||||
os: linux
|
os: linux
|
||||||
arch: amd64
|
arch: amd64
|
||||||
|
|
Loading…
Reference in a new issue