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 93f4be3 commit 07c4198Copy full SHA for 07c4198
.github/workflows/publish_package.yml
@@ -5,28 +5,23 @@ on:
5
types: [published]
6
7
jobs:
8
- publish-npm:
+ publish:
9
runs-on: ubuntu-18.04
10
steps:
11
- uses: actions/checkout@v2
12
- uses: actions/setup-node@v1
13
with:
14
- node-version: 10
+ node-version: '10.x'
15
registry-url: https://registry.npmjs.org/
16
- run: npm ci
17
- run: npm publish --access public
18
env:
19
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
20
21
- publish-gpr:
22
- runs-on: ubuntu-18.04
23
- steps:
24
- - uses: actions/checkout@v2
25
26
27
28
registry-url: https://npm.pkg.github.com/
29
- - run: npm ci
30
31
32
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments