-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (33 loc) · 1.13 KB
/
publish-package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Publish package
on:
release:
types: [created]
workflow_dispatch:
jobs:
publish-package:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
scope: '@romatk'
- run: yarn install
- run: yarn run build
- run: node utils/change-registry.js --registry https://npm.pkg.github.com/
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.MY_PUBISH_PACKAGE_TOKEN}}
- uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://registry.npmjs.org
scope: '@romatk'
- run: node utils/change-registry.js --registry https://registry.npmjs.org
- run: yarn publish
env:
NODE_AUTH_TOKEN: ${{secrets.MY_PUBISH_PACKAGE_TOKEN_NPM}}