Skip to content

Instantly share code, notes, and snippets.

@UmutSERIFLER
Created February 20, 2023 18:58
Show Gist options
  • Save UmutSERIFLER/d13d14b69727a773b1549d8e1d3dc993 to your computer and use it in GitHub Desktop.
Save UmutSERIFLER/d13d14b69727a773b1549d8e1d3dc993 to your computer and use it in GitHub Desktop.
Build Project
name: Build Project Workflow
on:
push:
branches: [ "develop" ]
jobs:
build:
runs-on: macos-latest
env:
ProjectName: SampleProject
steps:
- uses: actions/checkout@v3
- name: Build For Testing
run: |
xcodebuild build-for-testing -scheme ${{ env.ProjectName }} -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=16.2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment