From 4ae063681e7060ca12a24100d889059bffbd9be7 Mon Sep 17 00:00:00 2001 From: GoldenAnpu Date: Thu, 27 Nov 2025 16:54:08 +0100 Subject: [PATCH] Fix build argument syntax in workflow files --- .github/workflows/build-push-dev.yml | 10 +++++----- .github/workflows/build-push-release.yml | 10 +++++----- .github/workflows/manual-build-push-release.yml | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build-push-dev.yml b/.github/workflows/build-push-dev.yml index fa6af61..730518c 100644 --- a/.github/workflows/build-push-dev.yml +++ b/.github/workflows/build-push-dev.yml @@ -30,10 +30,10 @@ jobs: --local dockerfile=. \ --output type=image,name=supervisely/agent:dev,push=true \ --opt provenance=false \ - --opt build-arg=LABEL_VERSION=6.999.0 \ - --opt build-arg=LABEL_INFO=${{ env.LABEL_INFO }} \ - --opt build-arg=LABEL_MODES=${{ env.LABEL_MODES }} \ - --opt build-arg=LABEL_README=${{ env.LABEL_README }} \ - --opt build-arg=LABEL_BUILT_AT=${{ env.LABEL_BUILT_AT }} \ + --opt build-arg:LABEL_VERSION=6.999.0 \ + --opt build-arg:LABEL_INFO=${{ env.LABEL_INFO }} \ + --opt build-arg:LABEL_MODES=${{ env.LABEL_MODES }} \ + --opt build-arg:LABEL_README=${{ env.LABEL_README }} \ + --opt build-arg:LABEL_BUILT_AT=${{ env.LABEL_BUILT_AT }} \ --import-cache type=registry,ref=supervisely/agent:dev-cache \ --export-cache type=registry,ref=supervisely/agent:dev-cache,mode=max diff --git a/.github/workflows/build-push-release.yml b/.github/workflows/build-push-release.yml index b1d2187..5f822f5 100644 --- a/.github/workflows/build-push-release.yml +++ b/.github/workflows/build-push-release.yml @@ -36,11 +36,11 @@ jobs: --local dockerfile=. \ --output type=image,name=supervisely/agent:${{ env.LABEL_VERSION }},push=true \ --opt provenance=false \ - --opt build-arg=LABEL_VERSION=agent:${{ env.LABEL_VERSION }} \ - --opt build-arg=LABEL_INFO=${{ env.LABEL_INFO }} \ - --opt build-arg=LABEL_MODES=${{ env.LABEL_MODES }} \ - --opt build-arg=LABEL_README=${{ env.LABEL_README }} \ - --opt build-arg=LABEL_BUILT_AT=${{ env.LABEL_BUILT_AT }} \ + --opt build-arg:LABEL_VERSION=agent:${{ env.LABEL_VERSION }} \ + --opt build-arg:LABEL_INFO=${{ env.LABEL_INFO }} \ + --opt build-arg:LABEL_MODES=${{ env.LABEL_MODES }} \ + --opt build-arg:LABEL_README=${{ env.LABEL_README }} \ + --opt build-arg:LABEL_BUILT_AT=${{ env.LABEL_BUILT_AT }} \ --import-cache type=registry,ref=supervisely/agent:cache \ --export-cache type=registry,ref=supervisely/agent:cache,mode=max diff --git a/.github/workflows/manual-build-push-release.yml b/.github/workflows/manual-build-push-release.yml index 84fc746..001bd1c 100644 --- a/.github/workflows/manual-build-push-release.yml +++ b/.github/workflows/manual-build-push-release.yml @@ -42,11 +42,11 @@ jobs: --local dockerfile=. \ --output type=image,name=supervisely/agent:${{ env.LABEL_VERSION }},push=true \ --opt provenance=false \ - --opt build-arg=LABEL_VERSION=agent:${{ env.LABEL_VERSION }} \ - --opt build-arg=LABEL_INFO=${{ env.LABEL_INFO }} \ - --opt build-arg=LABEL_MODES=${{ env.LABEL_MODES }} \ - --opt build-arg=LABEL_README=${{ env.LABEL_README }} \ - --opt build-arg=LABEL_BUILT_AT=${{ env.LABEL_BUILT_AT }} \ + --opt build-arg:LABEL_VERSION=agent:${{ env.LABEL_VERSION }} \ + --opt build-arg:LABEL_INFO=${{ env.LABEL_INFO }} \ + --opt build-arg:LABEL_MODES=${{ env.LABEL_MODES }} \ + --opt build-arg:LABEL_README=${{ env.LABEL_README }} \ + --opt build-arg:LABEL_BUILT_AT=${{ env.LABEL_BUILT_AT }} \ --import-cache type=registry,ref=supervisely/agent:cache \ --export-cache type=registry,ref=supervisely/agent:cache,mode=max