Skip to content

Commit

Permalink
feat: replace xcodebuild with xcodebuild action
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurgeron committed Apr 5, 2024
1 parent 463d40b commit 1bc05a5
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/ci-example-ios.yml
Expand Up @@ -75,14 +75,10 @@ jobs:
working-directory: IapExample/ios

- name: Build App
run: "set -o pipefail && xcodebuild \
CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ \
-derivedDataPath build -UseModernBuildSystem=YES \
-workspace IapExample.xcworkspace \
-scheme IapExample \
-sdk iphonesimulator \
-configuration Debug \
-destination 'platform=iOS Simulator,name=iPhone 11 Pro' \
build \
CODE_SIGNING_ALLOWED=NO | xcpretty"
working-directory: IapExample/ios
uses: sersoft-gmbh/xcodebuild-action@v3
with:
workspace: IapExample/ios/IapExample.xcworkspace
scheme: IapExample
sdk: iphonesimulator
destination: 'platform=iOS Simulator,name=iPhone 15'
action: build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO

0 comments on commit 1bc05a5

Please sign in to comment.