Skip to content

Commit

Permalink
Fix DMG volume name
Browse files Browse the repository at this point in the history
  • Loading branch information
argilo committed Oct 4, 2023
1 parent 8aa9059 commit 757e13d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,9 @@ jobs:
if: ${{ steps.secret-check.outputs.available == 'true' }}
run: xcrun stapler staple --verbose Gqrx.app
- name: Create DMG
run: hdiutil create Gqrx.dmg -srcfolder Gqrx.app -format UDZO -fs HFS+ -volname "Gqrx $GQRX_VERSION"
run: |
GQRX_VERSION=$(<build/version.txt)
hdiutil create Gqrx.dmg -srcfolder Gqrx.app -format UDZO -fs HFS+ -volname "Gqrx $GQRX_VERSION"
- name: Notarize DMG
if: ${{ steps.secret-check.outputs.available == 'true' }}
env:
Expand Down

0 comments on commit 757e13d

Please sign in to comment.