Skip to content

Commit 5a0f893

Browse files
committed
Fix copying kext and nonexistant dsym on debug
1 parent ea35b08 commit 5a0f893

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,13 @@ jobs:
5353
working-directory: ${{ github.workspace }}/build/Build/Products/Release/
5454
run: |
5555
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Release/*.dSYM dSYM/ |
56-
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Release/*.kext . |
56+
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Release/*.kext ./ |
5757
zip -ur *.zip dSYM/ *.kext
5858
- name: Zip Debug
5959
working-directory: ${{ github.workspace }}/build/Build/Products/Debug/
6060
run: |
61-
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Debug/*.dSYM dSYM/ |
62-
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Debug/*.kext . |
63-
zip -ur *.zip dSYM/ *.kext
61+
cp -r ${{ github.workspace }}/Dependencies/VoodooSMBus/build/Debug/*.kext ./ |
62+
zip -ur *.zip *.kext
6463
6564
- uses: svenstaro/upload-release-action@v2
6665
if: github.event_name == 'release'

0 commit comments

Comments
 (0)