@@ -27,18 +27,18 @@ jobs:
27
27
target :
28
28
- x64
29
29
node :
30
- - 18
30
+ - 20
31
31
include :
32
32
- os : windows-latest
33
- node : 18
33
+ node : 20
34
34
host : x64
35
35
target : x86
36
36
- os : windows-latest
37
- node : 18
37
+ node : 20
38
38
host : x64
39
39
target : arm64
40
40
- os : macos-latest
41
- node : 18
41
+ node : 20
42
42
host : arm64
43
43
target : arm64
44
44
name : ${{ matrix.os }} (host=${{ matrix.host }}, target=${{ matrix.target }})
@@ -98,15 +98,15 @@ jobs:
98
98
99
99
- name : Upload binaries to commit artifacts
100
100
uses : actions/upload-artifact@v4
101
- if : matrix.node == 18
101
+ if : matrix.node == 20
102
102
with :
103
103
name : prebuilt-binaries-${{ matrix.os }}-host${{ matrix.host }}-target${{ matrix.target }}.zip
104
104
path : prebuilds/*
105
105
retention-days : 7
106
106
107
107
- name : Upload binaries to GitHub Release
108
108
run : yarn upload --upload-all ${{ github.token }}
109
- if : matrix.node == 18 && startsWith(github.ref, 'refs/tags/')
109
+ if : matrix.node == 20 && startsWith(github.ref, 'refs/tags/')
110
110
111
111
# build-qemu:
112
112
# runs-on: ubuntu-latest
@@ -115,7 +115,7 @@ jobs:
115
115
# fail-fast: false
116
116
# matrix:
117
117
# node:
118
- # - 18
118
+ # - 20
119
119
# target:
120
120
# - linux/arm64
121
121
# variant:
@@ -125,7 +125,7 @@ jobs:
125
125
# # musl x64 builds
126
126
# - target: linux/amd64
127
127
# variant: alpine3.15
128
- # node: 18
128
+ # node: 20
129
129
# name: ${{ matrix.variant }} (node=${{ matrix.node }}, target=${{ matrix.target }})
130
130
# steps:
131
131
# - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
@@ -152,12 +152,12 @@ jobs:
152
152
#
153
153
# - name: Upload binaries to commit artifacts
154
154
# uses: actions/upload-artifact@v4
155
- # if: matrix.node == 18
155
+ # if: matrix.node == 20
156
156
# with:
157
157
# name: prebuilt-binaries
158
158
# path: prebuilds/*
159
159
# retention-days: 7
160
160
#
161
161
# - name: Upload binaries to GitHub Release
162
162
# run: yarn install --ignore-scripts && yarn upload --upload-all ${{ github.token }}
163
- # if: matrix.node == 18 && startsWith(github.ref, 'refs/tags/')
163
+ # if: matrix.node == 20 && startsWith(github.ref, 'refs/tags/')
0 commit comments