Skip to content

Commit 1400d1c

Browse files
authored
remove set-output calls (#961)
1 parent 79e296a commit 1400d1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/prepare_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
if [ "${VERSION}" = "" ] ; then
4444
LATEST_TAG=$(git describe --tags --abbrev=0)
4545
NEXT_TAG=$(echo ${LATEST_TAG#v} | awk '{split($0, a, "."); print a[1] "." a[2] + 1 "." a[3]}')
46-
echo ::set-output name=version::$NEXT_TAG
46+
echo "version=$NEXT_TAG" >> $GITHUB_OUTPUT
4747
else
48-
echo ::set-output name=version::$VERSION
48+
echo "version=$VERSION" >> $GITHUB_OUTPUT
4949
fi
5050
env:
5151
VERSION: ${{ github.event.inputs.version }}

0 commit comments

Comments
 (0)