cd: separately package linux packages due to wrong RPATH causing deb and tar to fail

This commit is contained in:
Kingkor Roy Tirtho 2023-04-10 17:33:01 +06:00
parent 1c555672f8
commit 42d1db64db

View File

@ -141,7 +141,10 @@ jobs:
- name: Build Linux Packages - name: Build Linux Packages
run: | run: |
dart pub global activate flutter_distributor dart pub global activate flutter_distributor
flutter_distributor package --platform=linux --targets=deb,appimage,rpm --skip-clean alias dpkg-deb="dpkg-deb --Zxz"
flutter_distributor package --platform=linux --targets=appimage
flutter_distributor package --platform=linux --targets=rpm
flutter_distributor package --platform=linux --targets=deb
- name: Create tar.xz (stable) - name: Create tar.xz (stable)
if: ${{ inputs.channel == 'stable' }} if: ${{ inputs.channel == 'stable' }}