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.
2 parents 14ac8a4 + 795e4f0 commit fe7ebf1Copy full SHA for fe7ebf1
.github/workflows /publish.yml
.github/workflows/publish.yml
@@ -0,0 +1,23 @@
1
+name: "🚀 Publish"
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
8
+jobs:
9
+ release:
10
+ name: 🚀 Publish
11
+ runs-on: macos-11
12
+ steps:
13
+ - name: 📚 checkout
14
+ uses: actions/checkout@v2.4.2
15
+ - name: 🟢 node
16
+ uses: actions/setup-node@v3.3.0
17
+ with:
18
+ node-version: 16
19
+ registry-url: https://registry.npmjs.org
20
+ - name: 🚀 Build & Publish
21
+ run: yarn install && yarn build && yarn publish --access public
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
0 commit comments