Skip to content

Commit

Permalink
Fix Windows tar call
Browse files Browse the repository at this point in the history
A trailing slash apparently fails the call to `tar.exe` on Windows! See
https://stackoverflow.com/a/76103567/474819.
  • Loading branch information
garfieldnate committed Aug 6, 2024
1 parent 0401ace commit 4e66e54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# Required to preserve permissions; otherwise many of the packages will not work!
# See https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files
- name: Tar packages
run: tar -cvf build-artifacts-${{ matrix.os }}.tar build/jpackage/
run: tar -cvf build-artifacts-${{ matrix.os }}.tar build/jpackage

- name: Archive build artifacts
# Only runs if the previous steps were successful
Expand Down

0 comments on commit 4e66e54

Please sign in to comment.