Skip to content

Commit e1e3583

Browse files
committed
Setup GitHub Actions
1 parent 58fa6f1 commit e1e3583

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
on: [push, pull_request, release]
3+
4+
jobs:
5+
build_ios_app:
6+
name: Build iOS App
7+
runs-on: macos-15
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Build iOS App Scheme
11+
run: set -o pipefail && xcodebuild clean build -project IconGenerator.xcodeproj -scheme IconGenerator -configuration Debug -destination "platform=iOS Simulator,name=iPhone 16" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO ONLY_ACTIVE_ARCH=NO | xcpretty
12+
build_mac_app:
13+
name: Build macOS App
14+
runs-on: macos-15
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Build macOS App Scheme
18+
run: set -o pipefail && xcodebuild clean build -project IconGenerator.xcodeproj -scheme IconGenerator -configuration Debug -destination "platform=macOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO ONLY_ACTIVE_ARCH=NO | xcpretty

0 commit comments

Comments
 (0)