Skip to content

Commit

Permalink
chore: update build script
Browse files Browse the repository at this point in the history
  • Loading branch information
doraemonkeys committed Dec 31, 2024
1 parent 71706fe commit e6d495d
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,23 @@ jobs:
# zip -r ./bin/test.zip ./bin/test.txt
# echo "Hello, World!" > ./bin/test.apk

- name: Archive artifacts
- name: Archive artifacts on Ubuntu latest
if: matrix.os == 'ubuntu-latest'
id: build_archive
uses: actions/upload-artifact@v4
with:
name: WindSend-Archives-ubuntu-latest
path: |
./bin/*.zip
./bin/*.apk
if-no-files-found: error

- name: Archive artifacts on Ubuntu 22.04
if: matrix.os == 'ubuntu-22.04'
id: build_archive
uses: actions/upload-artifact@v4
with:
name: WindSend-Archives-linux
name: WindSend-Archives-ubuntu-22.04
path: |
./bin/*.zip
./bin/*.apk
Expand Down

0 comments on commit e6d495d

Please sign in to comment.