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 c20d3de commit a149026Copy full SHA for a149026
.github/workflows/publish.yml
@@ -1,6 +1,7 @@
1
on:
2
release:
3
types: [created]
4
+ workflow_dispatch:
5
name: publish
6
jobs:
7
publish-to-npm:
@@ -9,12 +10,15 @@ jobs:
9
10
- uses: actions/checkout@v3
11
- uses: actions/setup-node@v3
12
with:
- node-version: 14
13
+ node-version: '16.x'
14
+ - run: npm install
15
+ - run: npm run build
16
+ - uses: actions/setup-node@v3
17
+ with:
18
19
registry-url: 'https://wombat-dressing-room.appspot.com'
20
- id: publish
21
env:
22
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: |
- npm install
- npm run build
23
+ run:
24
npm publish
0 commit comments