From 303883a015dba0e9fec244cc63e79532485e4909 Mon Sep 17 00:00:00 2001 From: naicoi Date: Thu, 18 May 2023 01:18:55 +0700 Subject: [PATCH] Refactor platform names in .woodpecker.yml 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/". --- .woodpecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 5b87f5f..5175db6 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,7 +1,7 @@ matrix: platform: - - linux/amd64 - - linux/arm64 + - amd64 + - arm64 os: - alpine - slim @@ -10,7 +10,7 @@ matrix: - 18 - 20 -platform: ${platform} +platform: linux/${platform} pipeline: build: @@ -19,7 +19,7 @@ pipeline: registry: techio.dev repo: techio.dev/${CI_REPO} tags: - - ${version}-${os} + - ${version}-${os}-${platform} build_args: - tag=${version}-${os} username: deploy