GitHub Actions CI/CD patterns for iOS and Apple platforms. Use when configuring workflows, debugging CI failures, or optimizing pipelines.
always() to enable debugging failed runstimeout-minutes to prevent hung jobs# GOOD: Apple Silicon (faster)
runs-on: macos-14
# or
runs-on: macos-15
# BAD: Intel (slower, deprecated)
runs-on: macos-12
- uses: nick-fields/retry@v3
with:
timeout_minutes: 30
max_attempts: 3
command: bundle exec fastlane ios screenshots