Skip to content

Commit 13a9af1

Browse files
committed
Again.
1 parent 0e9aff9 commit 13a9af1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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/Release/*.so
80-
zlib/build/x86_64/Release/*.so
79+
zlib/build/arm64-v8a/*.so
80+
zlib/build/x86_64/*.so
8181
if-no-files-found: ignore # 'warn' or 'ignore' or 'error'

.github/workflows/cmake.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ jobs:
7878
- name: Move Windows binaries
7979
if: matrix.os == 'windows-latest'
8080
run: |
81-
mv zlib/build/bin/Release/*.dll zlib/build/bin/
81+
mv zlib/build/bin/Release/*.dll zlib/build/
8282
8383
- name: Upload Artifacts
8484
uses: actions/[email protected]
8585
with:
8686
name: zlib-${{ matrix.os }}-${{ matrix.arch }}-artifacts
8787
path: |
88-
zlib/build/Release/*.dll
89-
zlib/build/Release/*.so
90-
zlib/build/Release/*.dylib
88+
zlib/build/*.dll
89+
zlib/build/*.so
90+
zlib/build/*.dylib
9191
if-no-files-found: ignore # 'warn' or 'ignore' or 'error'

0 commit comments

Comments
 (0)