Skip to content

Commit 4e66e54

Browse files
committed
Fix Windows tar call
A trailing slash apparently fails the call to `tar.exe` on Windows! See https://stackoverflow.com/a/76103567/474819.
1 parent 0401ace commit 4e66e54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# Required to preserve permissions; otherwise many of the packages will not work!
4141
# See https://github.com/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files
4242
- name: Tar packages
43-
run: tar -cvf build-artifacts-${{ matrix.os }}.tar build/jpackage/
43+
run: tar -cvf build-artifacts-${{ matrix.os }}.tar build/jpackage
4444

4545
- name: Archive build artifacts
4646
# Only runs if the previous steps were successful

0 commit comments

Comments
 (0)