We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f42319 commit 3e2f5d9Copy full SHA for 3e2f5d9
1 file changed
.github/workflows/release.yml
@@ -132,13 +132,13 @@ jobs:
132
git add package.json deno.json
133
134
if git diff --cached --quiet; then
135
- echo "::error::No version changes to commit"
136
- exit 1
+ echo "No version changes to commit; tagging current HEAD"
+ else
137
+ git commit -m "chore(release): ${{ steps.version.outputs.tag }}"
138
+ git push origin HEAD
139
fi
140
- git commit -m "chore(release): ${{ steps.version.outputs.tag }}"
141
git tag -a "${{ steps.version.outputs.tag }}" -m "Release ${{ steps.version.outputs.tag }}"
- git push origin HEAD
142
git push origin "${{ steps.version.outputs.tag }}"
143
144
- if: env.RELEASE_PUBLISH == 'true'
0 commit comments