Skip to content

Commit 0e2a60d

Browse files
committed
fix: mkdir before unzipping?
1 parent 561fc68 commit 0e2a60d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pypi.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,14 @@ jobs:
100100
- name: Install libduckdb
101101
run: |
102102
wget https://github.com/duckdb/duckdb/releases/download/v1.2.0/libduckdb-osx-universal.zip
103-
unzip libduckdb-osx-universal.zip -d ./opt/duckdb
103+
mkdir -p /opt/duckdb
104+
unzip libduckdb-osx-universal.zip -d /opt/duckdb
104105
- name: Install delocate
105106
run: uv pip install --system delocate
106107
- name: Build wheels
107108
uses: PyO3/maturin-action@v1
108109
env:
109-
DUCKDB_LIB_DIR: ./opt/duckdb
110+
DUCKDB_LIB_DIR: /opt/duckdb
110111
with:
111112
target: ${{ matrix.platform.target }}
112113
args: --release --out dist -i 3.10

0 commit comments

Comments
 (0)