From 2ec1c7e83ecefe585c1c560c544d57aa814e1afb Mon Sep 17 00:00:00 2001 From: Max Revitt Date: Wed, 3 Apr 2024 20:22:37 +0100 Subject: [PATCH] fix(build): remove deprecated set-output (#259) --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5f820388657..7a6cb6665c5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,12 +44,13 @@ jobs: TAG=${{ github.event.release.tag_name }} fi fi - echo ::set-output name=version::$TAG + echo "version=$TAG" >> $GITHUB_OUTPUT # Determine if latest tag should be applied if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then echo "LATEST_TAG=false" >> $GITHUB_ENV else echo "LATEST_TAG=true" >> $GITHUB_ENV + fi build-and-push-amd64: needs: prepare