Skip to content

Commit d2046b0

Browse files
authored
fix: install duckdb for docs (#27)
1 parent 1d20020 commit d2046b0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/docs.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ jobs:
2020
fetch-depth: 0 # to get gh-pages
2121
- uses: astral-sh/setup-uv@v3
2222
- uses: Swatinem/rust-cache@v2
23+
- name: Download libduckdb
24+
run: |
25+
wget https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-linux-amd64.zip
26+
unzip libduckdb-linux-amd64.zip -d libduckdb
27+
echo "LD_LIBRARY_PATH=libduckdb" >> $GITHUB_ENV
28+
echo "LIBRARY_PATH=libduckdb" >> $GITHUB_ENV
2329
- name: Sync
2430
run: uv sync
2531
- name: Deploy

0 commit comments

Comments
 (0)