Skip to content

Commit 6864396

Browse files
committed
fix: github workspace
1 parent 837b408 commit 6864396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pypi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ jobs:
7070
run: |
7171
wget https://github.com/duckdb/duckdb/releases/download/v${DUCKDB_VERSION}/libduckdb-osx-universal.zip
7272
mkdir -p ./opt/duckdb
73-
unzip libduckdb-osx-universal.zip -d ${GITHUB_WORKSPACE}/opt/duckdb
73+
unzip libduckdb-osx-universal.zip -d ${{ github.workspace }}/opt/duckdb
7474
- name: Install delocate
7575
run: |
7676
uv venv
7777
uv pip install delocate
7878
- name: Build wheels
7979
uses: PyO3/maturin-action@v1
8080
env:
81-
DUCKDB_LIB_DIR: ${GITHUB_WORKSPACE}/opt/duckdb
81+
DUCKDB_LIB_DIR: ${{ github.workspace }}/opt/duckdb
8282
with:
8383
target: ${{ matrix.platform.target }}
8484
args: --release --out dist -i 3.10

0 commit comments

Comments
 (0)