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 e65952f commit cf4f4b8Copy full SHA for cf4f4b8
1 file changed
.github/workflows/release.yml
@@ -58,10 +58,13 @@ jobs:
58
npm run build
59
git add package.json package-lock.json dist/
60
git commit -m "Packaging ${NEW_VERSION} with rebuilt /dist"
61
- git tag "v${NEW_VERSION}"
+ git tag -a "v${NEW_VERSION}" -m "v${NEW_VERSION}"
62
+ echo "NEW_VERSION=${NEW_VERSION}" >> "$GITHUB_ENV"
63
64
- name: Push to GitHub
- run: git push origin staging --follow-tags
65
+ run: |
66
+ git push origin staging
67
+ git push origin "v${NEW_VERSION}"
68
69
- name: Publish to npm with provenance
70
run: npm publish --provenance --access public
0 commit comments