Skip to content

Commit

Permalink
Update compile.yml
Browse files Browse the repository at this point in the history
fix indentation

Signed-off-by: kalyway101 <[email protected]>
  • Loading branch information
kalyway101 authored Jun 3, 2024
1 parent 68744fa commit 8f9bc14
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,20 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

# Set up Xcode environment if needed
#- name : Set up Xcode
- name: Set up Xcode environment if needed
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
- name : Install dependencies (if any)
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
- 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
# Upload built app as artifact for download.
- uses: actions/upload-artifact@v2
with :
path : .github/Cork.app.zip

0 comments on commit 8f9bc14

Please sign in to comment.