-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (38 loc) · 1.08 KB
/
release.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
39
name: release
on:
push:
branches:
- main
paths-ignore:
- '**.md'
jobs:
npm-publish:
name: npm-publish
runs-on: ubuntu-latest
environment: production
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
with:
path: node_modules
key: nodemodules-${{ hashFiles('yarn.lock') }}
restore-keys: nodemodules-
- name: Install Node packages
run: yarn install
- name: Build
run: yarn build
- name: Run tests
run: yarn test
- name: Publish if version has been updated
uses: pascalgn/npm-publish-action@374314eadce0ca5353387666469a949f69414752
with:
tag_name: "v%s"
tag_message: "v%s"
commit_pattern: "^v?(\\d+\\.\\d+\\.\\d+(?:-(?:alpha|beta)\\.\\d+)?)$"
publish_command: "yarn"
publish_args: "--non-interactive --access=public --new-version"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}