Skip to content

Commit

Permalink
Try compound and within double braces
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmathias committed Mar 6, 2024
1 parent 3f59968 commit b8b5a92
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,15 @@ jobs:
runs-on: macOS-12
needs: check-pr-body-for-key
# Don't run if triggered by a PR from a fork since our Secrets won't be provided to the runner.
if: needs.check-pr-body-for-key.outputs.RUN_INTEGRATION == 'yes'
if: ${{ needs.check-pr-body-for-key.outputs.RUN_INTEGRATION == 'yes' && !github.event.pull_request.head.repo.fork }}
defaults:
run:
working-directory: Samples/Swift/DaysUntilBirthday
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build test target for Google Sign-in button for Swift
env:
SKIP: ${{ needs.check-pr-body-for-key.outputs.RUN_INTEGRATION }}
run: |
echo "$SKIP"
xcodebuild \
-project DaysUntilBirthday.xcodeproj \
build-for-testing \
Expand Down

0 comments on commit b8b5a92

Please sign in to comment.