-
Notifications
You must be signed in to change notification settings - Fork 1
126 lines (118 loc) · 3.4 KB
/
deploy.yml
File metadata and controls
126 lines (118 loc) · 3.4 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: Deploy
on:
pull_request:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+' # v1.2.3
- 'v[0-9]+.[0-9]+.[0-9]+-*' # v1.2.3-beta, v1.2.3-rc.1
permissions:
contents: write
concurrency:
group: node-active-window-deploy
cancel-in-progress: false
env:
NODE_VERSION: '18'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci --ignore-scripts
- run: npm run lint
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci --ignore-scripts
- run: npm run typecheck
build-addon:
name: Build addon (${{ matrix.name }})
needs: [lint, typecheck]
if: startsWith(github.ref, 'refs/tags/v')
strategy:
fail-fast: false
matrix:
include:
- name: windows-x64
os: windows-latest
prebuild_args: ''
- name: macos-x64
os: macos-13
prebuild_args: '--arch x64'
- name: macos-arm64
os: macos-14
prebuild_args: '--arch arm64'
- name: linux-x64
os: ubuntu-latest
prebuild_args: ''
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- run: npm ci --ignore-scripts
- name: Prebuild and upload to GitHub Release
shell: bash
run: npm run prebuild -- ${{ matrix.prebuild_args }} --upload ${{ secrets.GITHUB_TOKEN }}
publish:
name: Publish
needs: [lint, typecheck, build-addon]
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
registry-url: 'https://registry.npmjs.org'
- run: npm ci --ignore-scripts
- run: npm run build:ts
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Extract changelog for this tag
id: changelog
shell: bash
run: |
set -euo pipefail
TAG="${GITHUB_REF_NAME}"
PREV_TAG="$(git describe --abbrev=0 --tags "${TAG}^")"
{
echo 'body<<__CHANGELOG_EOF__'
git diff -U0 "$PREV_TAG" "$TAG" -- CHANGELOG.md \
| grep -E '^\+' \
| grep -vE '^\+\+\+' \
| grep -vE '^\+#+ \[' \
| sed 's/^\+//'
echo '__CHANGELOG_EOF__'
} >> "$GITHUB_OUTPUT"
- name: Update GitHub Release with changelog
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: ${{ github.ref_name }}
body: ${{ steps.changelog.outputs.body }}
prerelease: ${{ contains(github.ref_name, '-') }}