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 dc6ef83 commit 77cc7fdCopy full SHA for 77cc7fd
.github/workflows/publish.yml
@@ -0,0 +1,19 @@
1
+name: Publish on NPM
2
+on:
3
+ push:
4
+ branches: [ v2-beta ]
5
+
6
+jobs:
7
+ publish:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-node@v3
12
+ with:
13
+ node-version: 20
14
+ - run: npm install
15
+ - run: npm test
16
+ - uses: JS-DevTools/npm-publish@v3
17
18
+ token: ${{ secrets.NPM_TOKEN }}
19
+ tag: next
0 commit comments