Skip to content

fix(release): embed Developer ID provisioning profile in app bundle #69

fix(release): embed Developer ID provisioning profile in app bundle

fix(release): embed Developer ID provisioning profile in app bundle #69

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
permissions:
contents: read
jobs:
build:
name: Build (Debug)
runs-on: macos-26
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode.app
- name: Resolve Swift Packages
run: |
xcodebuild -resolvePackageDependencies \
-project DoomCoder.xcodeproj \
-scheme DoomCoder
- name: Build
run: |
xcodebuild \
-project DoomCoder.xcodeproj \
-scheme DoomCoder \
-configuration Debug \
-destination 'platform=macOS' \
CODE_SIGN_IDENTITY="-" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=YES \
build