We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 659fc65 commit cf955c6Copy full SHA for cf955c6
2 files changed
.github/actions/create-dmg/action.yml
@@ -37,6 +37,8 @@ runs:
37
# Copy background image if provided and exists
38
if [ -f "${{ inputs.dmg_background_path }}" ]; then
39
cp "${{ inputs.dmg_background_path }}" "dmg-stage/background.jpg"
40
+ # Resize background to match window size exactly (700x500)
41
+ sips -z 500 700 "dmg-stage/background.jpg"
42
else
43
echo "::warning::Background image not found at ${{ inputs.dmg_background_path }}. DMG will be created without custom background."
44
fi
.github/actions/create-dmg/background.jpg
13.6 KB
0 commit comments