From 5aa5c505b93e215ebeccc7167e813d1e8e1a081f Mon Sep 17 00:00:00 2001 From: anandnet <45705030+anandnet@users.noreply.github.com> Date: Sat, 13 Jul 2024 18:54:28 +0000 Subject: [PATCH] gen linux tar file --- .github/workflows/linux-deb.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux-deb.yml b/.github/workflows/linux-deb.yml index 616ab71..47b9afc 100644 --- a/.github/workflows/linux-deb.yml +++ b/.github/workflows/linux-deb.yml @@ -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