1
0
Fork 0

Refactor platform names in .woodpecker.yml
ci/woodpecker/push/woodpecker Pipeline was successful Details

Changed the platform names from "linux/amd64" and "linux/arm64" to "amd64" and "arm64", respectively. Also updated the platform variable in pipeline tags to include the prefix "linux/".
main
naicoi 2023-05-18 01:18:55 +07:00
parent d8d47a27ef
commit 303883a015
Signed by: naicoi
GPG Key ID: 7142E472DF7CF7D9
1 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
matrix: matrix:
platform: platform:
- linux/amd64 - amd64
- linux/arm64 - arm64
os: os:
- alpine - alpine
- slim - slim
@ -10,7 +10,7 @@ matrix:
- 18 - 18
- 20 - 20
platform: ${platform} platform: linux/${platform}
pipeline: pipeline:
build: build:
@ -19,7 +19,7 @@ pipeline:
registry: techio.dev registry: techio.dev
repo: techio.dev/${CI_REPO} repo: techio.dev/${CI_REPO}
tags: tags:
- ${version}-${os} - ${version}-${os}-${platform}
build_args: build_args:
- tag=${version}-${os} - tag=${version}-${os}
username: deploy username: deploy