We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d439ce1 commit 0448aedCopy full SHA for 0448aed
.github/workflows/release.yml
@@ -73,12 +73,12 @@ jobs:
73
run: |
74
git config user.name "github-actions[bot]"
75
git config user.email "github-actions[bot]@users.noreply.github.com"
76
- git tag v$PACKAGE_VERSION
77
- git push origin v$PACKAGE_VERSION
+ git tag $PACKAGE_VERSION
+ git push origin $PACKAGE_VERSION
78
BENCH_RESULTS="$(cat bench_results.txt)"
79
RELEASE_NOTES="### Benchmark Results:
80
\`\`\`
81
$BENCH_RESULTS
82
\`\`\`"
83
echo "$RELEASE_NOTES" > release_notes.md
84
- gh release create v$PACKAGE_VERSION --title "v$PACKAGE_VERSION" --notes-file release_notes.md
+ gh release create $PACKAGE_VERSION --title "$PACKAGE_VERSION" --notes-file release_notes.md
0 commit comments