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.
set-output
1 parent d39321f commit 78ea046Copy full SHA for 78ea046
.github/workflows/release.yml
@@ -58,8 +58,8 @@ jobs:
58
echo "::debug::new version = $VERSION"
59
VERSION_PLAIN="${VERSION:1}" # remove 'v' prefix
60
echo "::debug::plain version = $VERSION_PLAIN"
61
- echo "::set-output name=version::$VERSION"
62
- echo "::set-output name=version_plain::$VERSION_PLAIN"
+ echo "version=$VERSION" >> $GITHUB_OUTPUT
+ echo "version_plain=$VERSION_PLAIN" >> $GITHUB_OUTPUT
63
env:
64
NPMV_NEWVERSION: ${{ github.event.inputs.newversion }}
65
NPMV_MESSAGE: ${{ github.event.inputs.commitMessage }}
0 commit comments