Skip to content

Commit

Permalink
Create compile.yml
Browse files Browse the repository at this point in the history
Signed-off-by: kalyway101 <[email protected]>
  • Loading branch information
kalyway101 authored Jun 3, 2024
1 parent 1c0e0ab commit 68744fa
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build Cork

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Set up Xcode environment if needed
#- name : Set up Xcode
run : sudo xcode-select --switch /Applications/Xcode.app # Adjust if needed

# Install dependencies (if any)
#- name : Install dependencies
run : |
brew install cocoapods # If you have CocoaPods dependencies
# Resolve dependencies and build project
#- name : Resolve dependencies and build project
run : |
xcrun xcodebuild \
-project Cork.xcodeproj \
clean archive | xcpretty
## Optionally, upload built app as artifact for download.
- uses actions/upload-artifact@v2 with path .github/Cork.app.zip

0 comments on commit 68744fa

Please sign in to comment.