Update ci.yml
This commit is contained in:
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@@ -53,14 +53,19 @@ jobs:
|
|||||||
- name: Release Android
|
- name: Release Android
|
||||||
run: |
|
run: |
|
||||||
make release-android
|
make release-android
|
||||||
cp "$(find . -name '*.apk')" .
|
find ./ -type f -name "*.apk" -exec cp {} . \;
|
||||||
|
|
||||||
- name: Release Windows
|
- name: Release Windows
|
||||||
run: |
|
run: |
|
||||||
flutter_distributor package --platform windows --targets exe
|
flutter_distributor package --platform windows --targets exe
|
||||||
cp "$(find . -name '*.exe')" .
|
find ./ -type f -name "*.exe" -exec cp {} . \;
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: apk
|
name: apk
|
||||||
path: ./*.apk
|
path: ./*.apk
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: exe
|
||||||
|
path: ./*.exe
|
||||||
|
|||||||
Reference in New Issue
Block a user