-
-
Notifications
You must be signed in to change notification settings - Fork 47
36 lines (35 loc) · 1005 Bytes
/
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
name: Release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, 'chore(release)')
steps:
- uses: actions/checkout@v1
with:
ref: master
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- run: |
yarn -v
yarn --ignore-engines
yarn build
yarn test:prod
env:
NODE_OPTIONS: --max_old_space_size=4096
REGISTRY: https://registry.npmjs.org
- uses: janrywang/github-tag-release@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- run: yarn run release
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ACCESS_KEY_ID: ${{ secrets.ACCESS_KEY_ID }}
ACCESS_KEY_SECRET: ${{ secrets.ACCESS_KEY_SECRET }}