Skip to content

Commit 4222528

Browse files
committed
Updated CI and Makefile, losslessly minified fastdmg.png + createicns binary is now universal (arm64 and x86_64)
1 parent d5a4551 commit 4222528

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- run: make build_unsigned

Icon/createicns

36.3 KB
Binary file not shown.

Icon/fastdmg.png

-2.89 KB
Loading

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
release: clean build size
44

55
build_unsigned:
6-
mkdir -p products
7-
xattr -w com.apple.xcode.CreatedByBuildSystem true products
6+
@mkdir -p products
7+
@xattr -w com.apple.xcode.CreatedByBuildSystem true products
88
xcodebuild -parallelizeTargets \
99
-project "FastDMG.xcodeproj" \
1010
-target "FastDMG" \
@@ -15,8 +15,8 @@ build_unsigned:
1515
clean build
1616

1717
build:
18-
mkdir -p products
19-
xattr -w com.apple.xcode.CreatedByBuildSystem true products
18+
@mkdir -p products
19+
@xattr -w com.apple.xcode.CreatedByBuildSystem true products
2020
xcodebuild -parallelizeTargets \
2121
-project "FastDMG.xcodeproj" \
2222
-target "FastDMG" \
@@ -31,6 +31,6 @@ size:
3131
@du -hs products/FastDMG.app/Contents/MacOS/*
3232

3333
clean:
34-
xattr -w com.apple.xcode.CreatedByBuildSystem true products
34+
@xattr -w com.apple.xcode.CreatedByBuildSystem true products
3535
xcodebuild -project "FastDMG.xcodeproj" clean
3636
rm -rf products/* 2> /dev/null

0 commit comments

Comments
 (0)