1
0
Fork 0
mirror of https://github.com/drone/drone-cli.git synced 2024-05-04 14:46:02 +02:00

add linux prefix for arm

This commit is contained in:
Tony Li 2018-02-20 18:20:59 -05:00
parent dd760628a2
commit 9cac4bf0f1
No known key found for this signature in database
GPG Key ID: E73DA11CDB50D072
3 changed files with 6 additions and 6 deletions

View File

@ -25,23 +25,23 @@ pipeline:
when: when:
event: [push, tag] event: [push, tag]
publish_arm: publish_linux_arm:
image: plugins/docker image: plugins/docker
repo: drone/cli repo: drone/cli
secrets: [docker_username, docker_password] secrets: [docker_username, docker_password]
auto_tag: true auto_tag: true
auto_tag_suffix: arm auto_tag_suffix: linux-arm
dockerfile: Dockerfile.arm dockerfile: Dockerfile.linux.arm
when: when:
event: [push, tag] event: [push, tag]
publish_arm64: publish_linux_arm64:
image: plugins/docker image: plugins/docker
repo: drone/cli repo: drone/cli
secrets: [docker_username, docker_password] secrets: [docker_username, docker_password]
auto_tag: true auto_tag: true
auto_tag_suffix: arm64 auto_tag_suffix: linux-arm64
dockerfile: Dockerfile.arm64 dockerfile: Dockerfile.linux.arm64
when: when:
event: [push, tag] event: [push, tag]