File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments