Skip to content

Commit 0e9aff9

Browse files
committed
Fix again.
1 parent 1b192c7 commit 0e9aff9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cmake-android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ jobs:
7676
with:
7777
name: zlib-android-latest-all-artifacts
7878
path: |
79-
zlib/build/arm64-v8a/bin/*.so
80-
zlib/build/x86_64/bin/*.so
79+
zlib/build/arm64-v8a/Release/*.so
80+
zlib/build/x86_64/Release/*.so
8181
if-no-files-found: ignore # 'warn' or 'ignore' or 'error'

.github/workflows/cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
with:
8686
name: zlib-${{ matrix.os }}-${{ matrix.arch }}-artifacts
8787
path: |
88-
zlib/build/bin/*.dll
89-
zlib/build/bin/*.so
90-
zlib/build/bin/*.dylib
88+
zlib/build/Release/*.dll
89+
zlib/build/Release/*.so
90+
zlib/build/Release/*.dylib
9191
if-no-files-found: ignore # 'warn' or 'ignore' or 'error'

0 commit comments

Comments
 (0)