Skip to content

Commit

Permalink
ci: fix path to new sqlite3 executable
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastCicada committed Jan 31, 2024
1 parent f00bd4d commit 1244dbc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
- runs-on: ubuntu-latest
artifact-name: cadt-linux-x64
build-command: npm run create-linux-x64-dist
sqlite-path: ./node_modules/sqlite3/lib/binding/napi-v6-linux-glibc-x64/
sqlite-path: ./node_modules/sqlite3/build/Release/
- runs-on: macos-latest
artifact-name: cadt-macos-x64
build-command: npm run create-mac-x64-dist
sqlite-path: ./node_modules/sqlite3/lib/binding/napi-v6-darwin-unknown-x64/
sqlite-path: ./node_modules/sqlite3/build/Release/
- runs-on: windows-2019
artifact-name: cadt-windows-x64
build-command: npm run create-win-x64-dist
sqlite-path: .\node_modules\sqlite3\lib\binding\napi-v6-win32-unknown-x64\
sqlite-path: .\node_modules\sqlite3\build\Release\

steps:
- name: Clean workspace
Expand Down

0 comments on commit 1244dbc

Please sign in to comment.