File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -305,6 +305,16 @@ jobs:
305
305
node-version : " 20"
306
306
- name : Install modules
307
307
run : npm ci
308
+ - name : Download build artifact
309
+ uses : actions/download-artifact@v4
310
+ with :
311
+ name : build
312
+ path : dist
313
+ - name : Download llama.cpp artifact
314
+ uses : actions/download-artifact@v4
315
+ with :
316
+ name : llama.cpp
317
+ path : llama
308
318
- name : Resolve next release
309
319
env :
310
320
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
@@ -364,7 +374,7 @@ jobs:
364
374
365
375
model-dependent-tests :
366
376
name : Model dependent tests
367
- runs-on : macos-14
377
+ runs-on : macos-13
368
378
env :
369
379
NODE_LLAMA_CPP_GPU : false
370
380
needs :
Original file line number Diff line number Diff line change @@ -243,7 +243,12 @@ export default defineConfig({
243
243
BlogPageInfoPlugin ( {
244
244
include : ( id ) => id . includes ( path . sep + "blog" + path . sep ) && ! id . endsWith ( path . sep + "blog" + path . sep + "index.md" )
245
245
} )
246
- ]
246
+ ] ,
247
+ build : {
248
+ rollupOptions : {
249
+ external : [ "/logo.preview.avif" ]
250
+ }
251
+ }
247
252
} ,
248
253
markdown : {
249
254
codeTransformers : [
You can’t perform that action at this time.
0 commit comments