@@ -48,22 +48,22 @@ jobs:
48
48
name : stable - ${{ matrix.settings.target }} - node@18
49
49
runs-on : ${{ matrix.settings.host }}
50
50
steps :
51
- - uses : actions /checkout@v3
51
+ - uses : meta-introspector /checkout@v3
52
52
- name : Setup node
53
- uses : actions /setup-node@v3
53
+ uses : meta-introspector /setup-node@v3
54
54
if : ${{ !matrix.settings.docker }}
55
55
with :
56
56
node-version : 18
57
57
check-latest : true
58
58
cache : yarn
59
59
- name : Install
60
- uses : dtolnay /rust-toolchain@stable
60
+ uses : meta-introspector /rust-toolchain@stable
61
61
if : ${{ !matrix.settings.docker }}
62
62
with :
63
63
toolchain : stable
64
64
targets : ${{ matrix.settings.target }}
65
65
- name : Cache cargo
66
- uses : actions /cache@v3
66
+ uses : meta-introspector /cache@v3
67
67
with :
68
68
path : |
69
69
~/.cargo/registry/index/
72
72
.cargo-cache
73
73
target/
74
74
key : ${{ matrix.settings.target }}-cargo-${{ matrix.settings.host }}
75
- - uses : goto-bus-stop /setup-zig@v2
75
+ - uses : meta-introspector /setup-zig@v1
76
76
if : ${{ matrix.settings.target == 'armv7-unknown-linux-gnueabihf' }}
77
77
with :
78
78
version : 0.10.1
@@ -87,15 +87,15 @@ jobs:
87
87
- name : Install dependencies
88
88
run : yarn install
89
89
- name : Setup node x86
90
- uses : actions /setup-node@v3
90
+ uses : meta-introspector /setup-node@v3
91
91
if : matrix.settings.target == 'i686-pc-windows-msvc'
92
92
with :
93
93
node-version : 18
94
94
check-latest : true
95
95
cache : yarn
96
96
architecture : x86
97
97
- name : Build in docker
98
- uses : addnab /docker-run-action@v3
98
+ uses : meta-introspector /docker-run-action@v3
99
99
if : ${{ matrix.settings.docker }}
100
100
with :
101
101
image : ${{ matrix.settings.docker }}
@@ -106,7 +106,7 @@ jobs:
106
106
if : ${{ !matrix.settings.docker }}
107
107
shell : bash
108
108
- name : Upload artifact
109
- uses : actions /upload-artifact@v3
109
+ uses : meta-introspector /upload-artifact@v3
110
110
with :
111
111
name : bindings-${{ matrix.settings.target }}
112
112
path : ${{ env.APP_NAME }}.*.node
@@ -129,17 +129,17 @@ jobs:
129
129
- ' 18'
130
130
runs-on : ${{ matrix.settings.host }}
131
131
steps :
132
- - uses : actions /checkout@v3
132
+ - uses : meta-introspector /checkout@v3
133
133
- name : Setup node
134
- uses : actions /setup-node@v3
134
+ uses : meta-introspector /setup-node@v3
135
135
with :
136
136
node-version : ${{ matrix.node }}
137
137
check-latest : true
138
138
cache : yarn
139
139
- name : Install dependencies
140
140
run : yarn install
141
141
- name : Download artifacts
142
- uses : actions /download-artifact@v3
142
+ uses : meta-introspector /download-artifact@v3
143
143
with :
144
144
name : bindings-${{ matrix.settings.target }}
145
145
path : .
@@ -161,17 +161,17 @@ jobs:
161
161
- ' 18'
162
162
runs-on : ubuntu-latest
163
163
steps :
164
- - uses : actions /checkout@v3
164
+ - uses : meta-introspector /checkout@v3
165
165
- name : Setup node
166
- uses : actions /setup-node@v3
166
+ uses : meta-introspector /setup-node@v3
167
167
with :
168
168
node-version : ${{ matrix.node }}
169
169
check-latest : true
170
170
cache : yarn
171
171
- name : Install dependencies
172
172
run : yarn install
173
173
- name : Download artifacts
174
- uses : actions /download-artifact@v3
174
+ uses : meta-introspector /download-artifact@v3
175
175
with :
176
176
name : bindings-x86_64-unknown-linux-gnu
177
177
path : .
@@ -186,29 +186,29 @@ jobs:
186
186
- build
187
187
runs-on : macos-latest
188
188
steps :
189
- - uses : actions /checkout@v3
189
+ - uses : meta-introspector /checkout@v3
190
190
- name : Setup node
191
- uses : actions /setup-node@v3
191
+ uses : meta-introspector /setup-node@v3
192
192
with :
193
193
node-version : 18
194
194
check-latest : true
195
195
cache : yarn
196
196
- name : Install dependencies
197
197
run : yarn install
198
198
- name : Download macOS x64 artifact
199
- uses : actions /download-artifact@v3
199
+ uses : meta-introspector /download-artifact@v3
200
200
with :
201
201
name : bindings-x86_64-apple-darwin
202
202
path : artifacts
203
203
- name : Download macOS arm64 artifact
204
- uses : actions /download-artifact@v3
204
+ uses : meta-introspector /download-artifact@v3
205
205
with :
206
206
name : bindings-aarch64-apple-darwin
207
207
path : artifacts
208
208
- name : Combine binaries
209
209
run : yarn universal
210
210
- name : Upload artifact
211
- uses : actions /upload-artifact@v3
211
+ uses : meta-introspector /upload-artifact@v3
212
212
with :
213
213
name : bindings-universal-apple-darwin
214
214
path : ${{ env.APP_NAME }}.*.node
@@ -221,17 +221,17 @@ jobs:
221
221
- test-linux-x64-gnu-binding
222
222
- universal-macOS
223
223
steps :
224
- - uses : actions /checkout@v3
224
+ - uses : meta-introspector /checkout@v3
225
225
- name : Setup node
226
- uses : actions /setup-node@v3
226
+ uses : meta-introspector /setup-node@v3
227
227
with :
228
228
node-version : 18
229
229
check-latest : true
230
230
cache : yarn
231
231
- name : Install dependencies
232
232
run : yarn install
233
233
- name : Download all artifacts
234
- uses : actions /download-artifact@v3
234
+ uses : meta-introspector /download-artifact@v3
235
235
with :
236
236
path : artifacts
237
237
- name : Move artifacts
0 commit comments