Skip to content

Commit

Permalink
Tweak tar command in CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets committed Jul 19, 2024
1 parent fd28894 commit 7195ad3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/brickOS-bibo_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# Before archiving, tar the host installation output to preserve file permission
# c.f. https://github.com/actions/upload-artifact?tab=readme-ov-file#permission-loss
- name: Tar the host installation snapshot to preserve file permissions
run: tar -cvf build/install.tar -C build/destdir/
run: tar -cvf build/install.tar --strip-components=1 -C build/destdir/ ./

- name: Archive the host installation snapshot tar file
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 7195ad3

Please sign in to comment.