Skip to content

Commit

Permalink
Fix copying kext and nonexistant dsym on debug
Browse files Browse the repository at this point in the history
  • Loading branch information
1Revenger1 committed Oct 9, 2024
1 parent ea35b08 commit 5a0f893
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,13 @@ jobs:
working-directory: ${{ github.workspace }}/build/Build/Products/Release/
run: |
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Release/*.dSYM dSYM/ |
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Release/*.kext . |
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Release/*.kext ./ |
zip -ur *.zip dSYM/ *.kext
- name: Zip Debug
working-directory: ${{ github.workspace }}/build/Build/Products/Debug/
run: |
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Debug/*.dSYM dSYM/ |
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Debug/*.kext . |
zip -ur *.zip dSYM/ *.kext
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Debug/*.kext ./ |
zip -ur *.zip *.kext
- uses: svenstaro/upload-release-action@v2
if: github.event_name == 'release'
Expand Down

0 comments on commit 5a0f893

Please sign in to comment.