We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 779fa4e commit e894740Copy full SHA for e894740
.github/workflows/release.yml
@@ -59,6 +59,13 @@ jobs:
59
npm run build
60
zip -r release.zip ./dist
61
62
+ - name: Publish to npm
63
+ run: |
64
+ npm config set //registry.npmjs.org/:_authToken=${NPM_TOKEN}
65
+ npm publish --access public
66
+ env:
67
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
68
+
69
- name: Create GitHub Release
70
uses: softprops/action-gh-release@v2
71
with:
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "gix-cli",
3
- "version": "1.2.2-beta.0",
+ "version": "1.2.2",
4
"description": "A Git extension CLI tool",
5
"bin": {
6
"gix": "dist/gix.js"
0 commit comments