Skip to content

Commit 48df2ec

Browse files
authored
fix: Use correct syntax for env variables (#941)
1 parent 2653eff commit 48df2ec

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
@@ -56,9 +56,9 @@ jobs:
5656
id: versions
5757
run: |
5858
nbgv prepare-release --versionIncrement ${{ github.event.inputs.versionIncrement }}
59-
echo "{MAIN_VERSION_COMMIT_MESSAGE}={$(git log --format=%B -n 1 --skip 1)}" >> $GITHUB_OUTPUT
59+
echo "MAIN_VERSION_COMMIT_MESSAGE=$(git log --format=%B -n 1 --skip 1)" >> $GITHUB_OUTPUT
6060
git checkout release/v$NBGV_MajorMinorVersion
61-
echo "{RELEASE_VERSION_COMMIT_MESSAGE}={$(git log --format=%B -n 1)}" >> $GITHUB_OUTPUT
61+
echo "RELEASE_VERSION_COMMIT_MESSAGE=$(git log --format=%B -n 1)" >> $GITHUB_OUTPUT
6262
6363
# Workaround since nbgv prepare-release does not sign commits.
6464
# This undo's the commits, keeps the version changes, and commits again with signing

0 commit comments

Comments
 (0)