@@ -27,22 +27,14 @@ jobs:
27
27
target :
28
28
- x64
29
29
node :
30
- - 10
31
- - 11
32
- - 12
33
- - 13
34
- - 14
35
- - 15
36
- - 16
37
- - 17
38
30
- 18
39
31
include :
40
32
- os : windows-latest
41
- node : 16
33
+ node : 18
42
34
host : x86
43
35
target : x86
44
36
- os : macos-m1
45
- node : 16
37
+ node : 18
46
38
host : arm64
47
39
target : arm64
48
40
name : ${{ matrix.os }} (node=${{ matrix.node }}, host=${{ matrix.host }}, target=${{ matrix.target }})
@@ -113,15 +105,15 @@ jobs:
113
105
114
106
- name : Upload binaries to commit artifacts
115
107
uses : actions/upload-artifact@v3
116
- if : matrix.node == 16
108
+ if : matrix.node == 18
117
109
with :
118
110
name : prebuilt-binaries
119
111
path : build/stage/*/*
120
112
retention-days : 7
121
113
122
114
- name : Upload binaries to GitHub Release
123
115
run : yarn node-pre-gyp-github publish
124
- if : matrix.node == 16 && startsWith(github.ref, 'refs/tags/')
116
+ if : matrix.node == 18 && startsWith(github.ref, 'refs/tags/')
125
117
env :
126
118
NODE_PRE_GYP_GITHUB_TOKEN : ${{ github.token }}
127
119
build-qemu :
@@ -131,7 +123,7 @@ jobs:
131
123
fail-fast : false
132
124
matrix :
133
125
node :
134
- - 16
126
+ - 18
135
127
target :
136
128
- linux/arm64
137
129
variant :
@@ -141,7 +133,7 @@ jobs:
141
133
# musl x64 builds
142
134
- target : linux/amd64
143
135
variant : alpine3.15
144
- node : 16
136
+ node : 18
145
137
name : ${{ matrix.variant }} (node=${{ matrix.node }}, target=${{ matrix.target }})
146
138
steps :
147
139
- uses : actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
@@ -168,14 +160,14 @@ jobs:
168
160
169
161
- name : Upload binaries to commit artifacts
170
162
uses : actions/upload-artifact@v3
171
- if : matrix.node == 16
163
+ if : matrix.node == 18
172
164
with :
173
165
name : prebuilt-binaries
174
166
path : build/stage/*/*
175
167
retention-days : 7
176
168
177
169
- name : Upload binaries to GitHub Release
178
170
run : yarn install --ignore-scripts && yarn node-pre-gyp-github publish
179
- if : matrix.node == 16 && startsWith(github.ref, 'refs/tags/')
171
+ if : matrix.node == 18 && startsWith(github.ref, 'refs/tags/')
180
172
env :
181
173
NODE_PRE_GYP_GITHUB_TOKEN : ${{ github.token }}
0 commit comments