Skip to content

Commit 14ca001

Browse files
committed
fix: try local folder?
1 parent a5db7ea commit 14ca001

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/pypi.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ jobs:
6969
run: |
7070
wget https://github.com/duckdb/duckdb/releases/download/v${DUCKDB_VERSION}/libduckdb-osx-universal.zip
7171
mkdir -p ./opt/duckdb
72-
unzip libduckdb-osx-universal.zip -d ./opt/duckdb
72+
unzip libduckdb-osx-universal.zip -d ${GITHUB_WORKSPACE}/opt/duckdb
7373
- name: Install delocate
7474
run: |
7575
uv venv
7676
uv pip install delocate
7777
- name: Build wheels
7878
uses: PyO3/maturin-action@v1
7979
env:
80-
DUCKDB_LIB_DIR: ./opt/duckdb
80+
DUCKDB_LIB_DIR: ${GITHUB_WORKSPACE}/opt/duckdb
8181
with:
8282
target: ${{ matrix.platform.target }}
8383
args: --release --out dist -i 3.10
@@ -111,7 +111,6 @@ jobs:
111111
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
112112
needs:
113113
- linux
114-
- musllinux
115114
- macos
116115
- sdist
117116
environment:

0 commit comments

Comments
 (0)