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 69a9a84 commit ec8c826Copy full SHA for ec8c826
.github/workflows/publish.yml
@@ -0,0 +1,18 @@
1
+name: publish
2
+on:
3
+ release:
4
+ types: [published]
5
+
6
+jobs:
7
+ publish:
8
+ name: Publish to npm 🚢📦
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@master
12
+ - uses: actions/setup-node@master
13
+ with:
14
+ node-version: 12.x
15
+ - run: npx yarn bootstrap
16
+ - uses: JS-DevTools/npm-publish@v1
17
18
+ token: ${{ secrets.NPM_TOKEN }}
0 commit comments