-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (49 loc) · 1.32 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Release
on:
workflow_run:
workflows: ['Snyk Security Check']
branches: [main, beta]
types:
- completed
# on:
# push:
# branches: [main, beta]
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
# with:
# node-version: 'lts/*'
with:
node-version: 18.x
- name: Create .npmrc file
run: |
echo 'registry=https://registry.npmjs.org/' >> .npmrc
echo '@uzenith360:registry=https://npm.pkg.github.com/' >> .npmrc
echo '//npm.pkg.github.com/:_authToken=${{ secrets.GH_TOKEN }}' >> .npmrc
- name: Install dependencies
run: npx ci
# run: npm ci
- name: Install semantic-release extra plugins
run: npm install --save-dev @semantic-release/changelog @semantic-release/git
- name: Lint
run: npm run lint-fix --if-present
- name: Test
run: npm test -- --watch=false --browsers=ChromeHeadless
- name: Build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release