-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (38 loc) · 1 KB
/
auto-publish.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
40
41
42
43
# This is a basic workflow to help you get started with Actions
name: Release
on:
push:
branches:
- master
- beta
jobs:
release:
name: Check release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v2
with:
node-version: '16.x'
# cache: 'yarn'
- name: Install modules & build the Library
run: |
yarn install
yarn build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17
branches: |
[
'+([0-9])?(.{+([0-9]),x}).x',
'master',
{name: 'beta', prerelease: true},
]
extra_plugins: |
@semantic-release/changelog@^5.0.1
@semantic-release/git@^9.0.0
@semantic-release/npm@^7.1.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}