diff --git a/.github/workflows/objective-c-xcode.yml b/.github/workflows/objective-c-xcode.yml index ccc942734..ff76f46f9 100644 --- a/.github/workflows/objective-c-xcode.yml +++ b/.github/workflows/objective-c-xcode.yml @@ -12,29 +12,12 @@ jobs: runs-on: macos-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Set Default Scheme - run: | - cd iOS - scheme_list=$(xcodebuild -list -json | tr -d "\n") - default=$(echo $scheme_list | ruby -e "require 'json'; puts JSON.parse(STDIN.gets)['project']['targets'][0]") - echo $default | cat >default - echo Using default scheme: $default - - name: Build - env: - scheme: ${{ 'default' }} - run: | - if [ $scheme = default ]; then scheme=$(cat default); fi - if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi - file_to_build=`echo $file_to_build | awk '{$1=$1;print}'` - xcodebuild clean build analyze -scheme "$scheme" -"$filetype_parameter" "$file_to_build" | xcpretty && exit ${PIPESTATUS[0]} - - name: xcode-build-github-action - uses: akiojin/xcode-build-github-action@v1.0 - with: - project: iOS/ - export-method: development # optional, default is development - output-directory: . - team-id: PG2KAM3LR7 - - + - name: xcode-build-github-action + uses: akiojin/xcode-build-github-action@v1.0 + with: + project: iOS/ + export-method: development # optional, default is development + output-directory: . + team-id: PG2KAM3LR7 + +