Skip to content

Commit

Permalink
Remove -C from tar command in CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets authored Jul 19, 2024
1 parent ab19744 commit 2700f67
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/brickOS-bibo_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,26 +34,26 @@ 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 --strip-components=2 -C build/destdir/ ./
run: tar -cvf build/install.tar --strip-components=2 build/destdir/

- name: Archive the host installation snapshot tar file
uses: actions/upload-artifact@v4
with:
name: brickOS-bibo-install~[runner_${{ matrix.os }}]
name: brickOS-bibo_install_[runner~${{ matrix.os }}]
path: build/install.tar

- name: Archive the firmware image
uses: actions/upload-artifact@v4
with:
name: brickOS-bibo-firmware~[runner_${{ matrix.os }}]
name: brickOS-bibo_firmware_[runner~${{ matrix.os }}]
path: |
kernel/*.srec
kernel/*.coff
- name: Archive the demo program files
uses: actions/upload-artifact@v4
with:
name: brickOS-bibo-programs~[runner_${{ matrix.os }}]
name: brickOS-bibo_programs_[runner~${{ matrix.os }}]
path: |
demo/**/*.lx
demo/**/*.a

0 comments on commit 2700f67

Please sign in to comment.