Skip to content

Commit

Permalink
gen linux tar file
Browse files Browse the repository at this point in the history
  • Loading branch information
anandnet committed Jul 13, 2024
1 parent 005aaa8 commit 5aa5c50
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/linux-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,21 @@ jobs:
- name: Flutter doctor
run: flutter doctor

- name: Build linux deb package
- name: Build linux deb package and tar file
working-directory: ./Harmony-Music
run: |
dart pub global activate flutter_distributor
flutter_distributor package --platform linux --targets deb
tar -czaf harmonymusic-Linux-Portable.tar.gz ./build/linux/x64/release/bundle/*
- name: Upload linux deb artifact
uses: actions/upload-artifact@v4
with:
name: Harmony music linux deb
path: ./Harmony-Music/dist/*

- name: Upload linux portable tar
uses: actions/upload-artifact@v4
with:
name: Harmony music linux tar
path: ./Harmony-Music/harmonymusic-Linux-Portable.tar.gz

0 comments on commit 5aa5c50

Please sign in to comment.