Skip to content

Commit

Permalink
fix(build): remove deprecated set-output (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
revitteth authored Apr 3, 2024
1 parent e0748e6 commit 2ec1c7e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2ec1c7e

Please sign in to comment.