-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (40 loc) · 1.24 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Xcode Build
on:
push:
branches: ["main"]
paths:
- "DropMeJPEG/**"
- "DropMeJPEG.xcodeproj/**"
- ".github/workflows/build.yml" # This file
pull_request:
paths:
- "DropMeJPEG/**"
- "DropMeJPEG.xcodeproj/**"
- ".github/workflows/build.yml" # This file
jobs:
build:
name: Build and analyze default scheme using xcodebuild command
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set Default Scheme
run: |
scheme_list=$(xcodebuild -list -json | tr -d "\n")
default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]")
echo $default | cat >default
echo Using default scheme: $default
- name: Build App
run: |
xcodebuild clean build \
-sdk macosx \
-configuration Release \
-derivedDataPath build
- name: Create DMG
run: |
hdiutil create -volname DropMeJPEG -srcfolder build/Release/DropMeJPEG.app build/DropMeJPEG.dmg
- name: Upload DMG
uses: actions/upload-artifact@v4
with:
name: DropMeJPEG.dmg
path: build/DropMeJPEG.dmg