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 a14ed3d commit bc092c5Copy full SHA for bc092c5
.github/workflows/prepare-release.yml
@@ -56,9 +56,9 @@ jobs:
56
id: versions
57
run: |
58
nbgv prepare-release --versionIncrement ${{ github.event.inputs.versionIncrement }}
59
- echo "::set-output name=MAIN_VERSION_COMMIT_MESSAGE::$(git log --format=%B -n 1 --skip 1)"
+ echo "{MAIN_VERSION_COMMIT_MESSAGE}={$(git log --format=%B -n 1 --skip 1)}" >> $GITHUB_OUTPUT
60
git checkout release/v$NBGV_MajorMinorVersion
61
- echo "::set-output name=RELEASE_VERSION_COMMIT_MESSAGE::$(git log --format=%B -n 1)"
+ echo "{RELEASE_VERSION_COMMIT_MESSAGE}={$(git log --format=%B -n 1)}" >> $GITHUB_OUTPUT
62
63
# Workaround since nbgv prepare-release does not sign commits.
64
# This undo's the commits, keeps the version changes, and commits again with signing
0 commit comments