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 2653eff commit 48df2ecCopy full SHA for 48df2ec
.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 "{MAIN_VERSION_COMMIT_MESSAGE}={$(git log --format=%B -n 1 --skip 1)}" >> $GITHUB_OUTPUT
+ echo "MAIN_VERSION_COMMIT_MESSAGE=$(git log --format=%B -n 1 --skip 1)" >> $GITHUB_OUTPUT
60
git checkout release/v$NBGV_MajorMinorVersion
61
- echo "{RELEASE_VERSION_COMMIT_MESSAGE}={$(git log --format=%B -n 1)}" >> $GITHUB_OUTPUT
+ 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