Skip to content

Commit 1d21ed9

Browse files
committed
fix: if statements
1 parent c2b11cc commit 1d21ed9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
- uses: astral-sh/setup-uv@v3
2828
- uses: Swatinem/rust-cache@v2
2929
- name: Download libduckdb (macos)
30-
if: ${{ matrix.os }} == macos-latest
30+
if: matrix.os == 'macos-latest'
3131
run: |
3232
wget https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-osx-universal.zip
3333
unzip libduckdb-osx-universal.zip -d libduckdb
3434
echo "LIBRARY_PATH=libduckdb" >> $GITHUB_ENV
3535
echo "DYLD_LIBRARY_PATH=libduckdb" >> $GITHUB_ENV
3636
- name: Download libduckdb (ubuntu)
37-
if: ${{ matrix.os }} == ubuntu-latest
37+
if: matrix.os == 'ubuntu-latest'
3838
run: |
3939
wget https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-linux-amd64.zip
4040
unzip libduckdb-linux-amd64.zip -d libduckdb

0 commit comments

Comments
 (0)