We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent affe2c7 commit b187e45Copy full SHA for b187e45
1 file changed
.github/workflows/build.yml
@@ -133,10 +133,10 @@ jobs:
133
run: |
134
if [[ ${{ github.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+ ]]; then
135
echo "Release tag detected"
136
- echo "::set-output name=is_release::true"
+ echo "is_release=true" >> "$GITHUB_OUTPUT"
137
if [[ ${{ github.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+.*- ]]; then
138
echo "Prerelease tag detected"
139
- echo "::set-output name=is_prerelease::true"
+ echo "is_prerelease=true" >> "$GITHUB_OUTPUT"
140
fi
141
142
0 commit comments