Skip to content

Commit

Permalink
ci: Don't package .o files (#2191)
Browse files Browse the repository at this point in the history
Remove .o files from build directory tarball
  • Loading branch information
paulgessinger committed Jun 12, 2023
1 parent db57deb commit c71ecbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ jobs:
run: cmake --build build --target install

- name: Package build
run: tar czf build.tar.gz -C build .
run: tar czf build.tar.gz -C build --exclude="*.o" .

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit c71ecbb

Please sign in to comment.