Skip to content

Commit fd4f067

Browse files
authored
build: fix CI config (#312)
1 parent 4b3ad61 commit fd4f067

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,16 @@ jobs:
305305
node-version: "20"
306306
- name: Install modules
307307
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
308318
- name: Resolve next release
309319
env:
310320
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -364,7 +374,7 @@ jobs:
364374

365375
model-dependent-tests:
366376
name: Model dependent tests
367-
runs-on: macos-14
377+
runs-on: macos-13
368378
env:
369379
NODE_LLAMA_CPP_GPU: false
370380
needs:

.vitepress/config.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,12 @@ export default defineConfig({
243243
BlogPageInfoPlugin({
244244
include: (id) => id.includes(path.sep + "blog" + path.sep) && !id.endsWith(path.sep + "blog" + path.sep + "index.md")
245245
})
246-
]
246+
],
247+
build: {
248+
rollupOptions: {
249+
external: ["/logo.preview.avif"]
250+
}
251+
}
247252
},
248253
markdown: {
249254
codeTransformers: [

0 commit comments

Comments
 (0)