-
-
Notifications
You must be signed in to change notification settings - Fork 329
32 lines (27 loc) · 711 Bytes
/
Copy pathbuild.yml
File metadata and controls
32 lines (27 loc) · 711 Bytes
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
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Install XcodeGen
run: brew install xcodegen
- name: Generate Xcode project
run: xcodegen generate
- name: Build (Universal Binary)
run: |
xcodebuild -project PureMac.xcodeproj \
-scheme PureMac \
-configuration Release \
-derivedDataPath build \
build \
ARCHS="arm64 x86_64" \
ONLY_ACTIVE_ARCH=NO \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO