Skip to content

Commit

Permalink
. e Turn off code signing for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Jul 19, 2024
1 parent 7e50152 commit 5e2b02c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Show current version of Xcode
run: xcodebuild -version
- name: Build
run: xcodebuild build -project '${{ env.project }}' -scheme '${{ matrix.run-config['scheme'] }}' -sdk '${{ matrix.run-config['sdk'] }}' -destination '${{ matrix.run-config['destination'] }}' | xcpretty && exit ${PIPESTATUS[0]}
run: xcodebuild build -project '${{ env.project }}' -scheme '${{ matrix.run-config['scheme'] }}' -sdk '${{ matrix.run-config['sdk'] }}' -destination '${{ matrix.run-config['destination'] }}' CODE_SIGNING_ALLOWED='NO' | xcpretty && exit ${PIPESTATUS[0]}

test:
name: Build, test, report coverage
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Show current version of Xcode
run: xcodebuild -version
- name: Build & test
run: xcodebuild test -project '${{ env.project }}' -scheme '${{ env.scheme }}' -sdk '${{ env.sdk }}' | xcpretty && exit ${PIPESTATUS[0]}
run: xcodebuild test -project '${{ env.project }}' -scheme '${{ env.scheme }}' -sdk '${{ env.sdk }}' CODE_SIGNING_ALLOWED='NO' | xcpretty && exit ${PIPESTATUS[0]}
- name: Install gems
run: |
bundle config path vendor/bundle
Expand Down

0 comments on commit 5e2b02c

Please sign in to comment.