Skip to content

Commit b187e45

Browse files
authored
Fix deprecated GitHub Actions outputs (#3881)
1 parent affe2c7 commit b187e45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ jobs:
133133
run: |
134134
if [[ ${{ github.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+ ]]; then
135135
echo "Release tag detected"
136-
echo "::set-output name=is_release::true"
136+
echo "is_release=true" >> "$GITHUB_OUTPUT"
137137
if [[ ${{ github.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+.*- ]]; then
138138
echo "Prerelease tag detected"
139-
echo "::set-output name=is_prerelease::true"
139+
echo "is_prerelease=true" >> "$GITHUB_OUTPUT"
140140
fi
141141
fi
142142

0 commit comments

Comments
 (0)