Fix DMG volume name

This commit is contained in:
Clayton Smith 2023-10-04 19:27:57 -04:00
parent 8aa905954f
commit 757e13d5c0

View File

@ -244,7 +244,9 @@ jobs:
if: ${{ steps.secret-check.outputs.available == 'true' }} if: ${{ steps.secret-check.outputs.available == 'true' }}
run: xcrun stapler staple --verbose Gqrx.app run: xcrun stapler staple --verbose Gqrx.app
- name: Create DMG - 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 - name: Notarize DMG
if: ${{ steps.secret-check.outputs.available == 'true' }} if: ${{ steps.secret-check.outputs.available == 'true' }}
env: env: