-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 1.13 KB
/
publish-npm.yml
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
36
37
38
name: Publish Packages to the NPM Public Registry
on:
# Direct push to the master branch is disabled, this will only run when a PR is merged to the master branch
push:
branches: [master]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Install depedencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test
- name: Build list
run: yarn build
- name: Publish to NPM
id: publish
uses: JS-DevTools/npm-publish@v2
with:
token: ${{ secrets.NPMJS_NODE_AUTH_TOKEN }}
access: public
ignore-scripts: false
- if: steps.publish.outputs.type
run: |
echo "Version changed: ${{ steps.publish.outputs.old-version }} => ${{ steps.publish.outputs.version }}"
shell: bash