Skip to content

ci: signed/notarized release pipeline + bump 2.2.0 #85

ci: signed/notarized release pipeline + bump 2.2.0

ci: signed/notarized release pipeline + bump 2.2.0 #85

Workflow file for this run

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