Skip to content

Commit

Permalink
include only necessary files
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Wójcik committed Oct 11, 2023
1 parent 84a7a1a commit f4443f1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,7 @@ jobs:

- name: Tar Linux files
if: matrix.platform == 'Linux'
run: |
cd src-tauri/target/release/bundle
find -name '*.AppImage' -o -name '*.deb' | tar -cvf bundle.tar --files-from=-
run: find 'src-tauri/target/release/bundle' -name '*.AppImage' -printf '%P\0' -o -name '*.deb' -printf '%P\0' | tar --null -C 'src-tauri/target/release/bundle' -cvf bundle.tar --files-from=-

- name: Upload Linux artifacts
if: matrix.platform == 'Linux'
Expand Down

0 comments on commit f4443f1

Please sign in to comment.