-
Notifications
You must be signed in to change notification settings - Fork 6
65 lines (56 loc) · 1.5 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
55
56
57
58
59
60
61
62
63
64
65
name: release
on:
# push:
# tags:
# - "v*.*.*"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
quality:
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: setup node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test
npm-publish:
runs-on: ubuntu-24.04
needs: quality
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: set up node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build
- name: publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
gh-release:
needs: npm-publish
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: read changelog
id: changelogReader
uses: mindsers/changelog-reader-action@v2
with:
version: ${{ github.ref_name }}
path: docs/changelog.md
- name: release
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.changelogReader.outputs.changes }}
name: '${{ github.ref_name }}'