-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (31 loc) · 876 Bytes
/
Copy pathci.yml
File metadata and controls
33 lines (31 loc) · 876 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
33
name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
build:
runs-on: [self-hosted, macOS, ARM64]
strategy:
fail-fast: false
matrix:
variant: [stable, dev]
steps:
- uses: actions/checkout@v6
- name: Toolchain
run: |
swift --version
xcodebuild -version || true
- name: Build ${{ matrix.variant }}
run: |
if [[ "${{ matrix.variant }}" == "dev" ]]; then
APP_NAME="ClaudeMaxx Dev" \
BUNDLE_ID="dev.lewis.claudemaxx.dev" \
SPARKLE_FEED_URL="" \
SPARKLE_PUBLIC_KEY="" \
./Scripts/package_app.sh
codesign --verify --deep --strict --verbose=2 "ClaudeMaxx Dev.app"
else
./Scripts/package_app.sh
codesign --verify --deep --strict --verbose=2 ClaudeMaxx.app
fi