Skip to content

Commit

Permalink
zip up dsym artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
fredemmott committed Jan 1, 2024
1 parent 31fc8b0 commit ce67b05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ${{runner.temp}}/artifacts/sdmicmute-lipo-dsym
asset_name: sdmicmute.dSYM
asset_path: ${{runner.temp}}/artifacts/sdmicmute-lipo-dsym/sdmicmute.dSYM.zip
asset_name: sdmicmute.dSYM.zip
asset_content_type: application/octet-stream
6 changes: 5 additions & 1 deletion .github/workflows/sdplugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,15 @@ jobs:
lipo -create \
artifacts/*.dSYM/${DSYM_FILE} \
-output dsym/sdmicmute.dSYM/${DSYM_FILE}
(
cd dsym
zip -r sdmicmute.dSYM.zip sdmicmute.dSYM
)
- name: Upload MacOS debug symbols
uses: actions/upload-artifact@v4
with:
name: sdmicmute-lipo-dsym
path: ${{runner.temp}}/dsym
path: ${{runner.temp}}/dsym/sdmicmute.dSYM.zip
- name: Copy executables
working-directory: ${{runner.temp}}
run: |
Expand Down

0 comments on commit ce67b05

Please sign in to comment.