Skip to content

Commit f075998

Browse files
committed
Fix: Simplify DMG creation process for macOS builds
Removed redundant DMG creation steps in the macOS build workflow.
1 parent 08da115 commit f075998

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,7 @@ jobs:
134134
if: matrix.package_type == 'mac'
135135
run: |
136136
mkdir -p dist
137-
create-dmg \
138-
--volname="GitSwift Installer" \
139-
"app/target/aarch64-apple-darwin/release/bundle/osx/gitswift.app" \
140-
"dist/"
137+
create-dmg "app/target/aarch64-apple-darwin/release/bundle/osx/gitswift.app" "dist/"
141138
mkdir -p artifacts
142139
mv dist/*.dmg artifacts/
143140

0 commit comments

Comments
 (0)