diff options
author | 2025-02-01 21:07:39 +0100 | |
---|---|---|
committer | 2025-02-01 21:07:39 +0100 | |
commit | 523f7004dce885fe38b4f80e34a8f76dc8ea98b5 (patch) | |
tree | 5f58624c00115cf4d56b1902dfbf4dc793164295 | |
parent | 0cdf92d60a140659942521ec27a1d1b7e004bc03 (diff) | |
download | usbmuxd-523f7004dce885fe38b4f80e34a8f76dc8ea98b5.tar.gz usbmuxd-523f7004dce885fe38b4f80e34a8f76dc8ea98b5.tar.bz2 |
[github-actions] Fix artifact preparation
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 77a0ff5..1ced463 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -69,7 +69,7 @@ jobs: run: | mkdir -p dest DESTDIR=`pwd`/dest make install - tar -C dest -cf usbmuxd.tar usr lib + tar -C dest -cf usbmuxd.tar --strip-components 1 . - name: publish artifact uses: actions/upload-artifact@v4 with: |