Skip to content

Commit

Permalink
v0.0.7 fix tar.gz steps
Browse files Browse the repository at this point in the history
  • Loading branch information
DawnMagnet committed Mar 10, 2024
1 parent 2606460 commit d60aa4d
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/flutter-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,20 @@ jobs:

- name: pack into tar.gz or zip
run: |
tar -zcvf web.tar.gz -C build/web ./*
tar -zcvf linux.tar.gz -C build/linux/x64/release/bundle ./*
tar -zcvf android-apk.tar.gz -C build/app/outputs/apk/release ./app-release.apk
cd build/web
tar -zcvf web.tar.gz ./*
cd ../..
mv build/web/web.tar.gz .
cd build/linux/x64/release/bundle
tar -zcvf linux.tar.gz ./*
cd ../../../../..
mv build/linux/x64/release/bundle/linux.tar.gz .
cd build/app/outputs/apk/release
tar -zcvf android-apk.tar.gz ./app-release.apk
cd ../../../../..
mv build/app/outputs/apk/release/android-apk.tar.gz .
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit d60aa4d

Please sign in to comment.