From 099e739bb1a336f07c54dbc5fc3943cf0bdf2dcf Mon Sep 17 00:00:00 2001 From: Alex Nachbaur Date: Thu, 15 Aug 2024 15:40:02 -0700 Subject: [PATCH] Fix stupid logic error --- .github/workflows/tests.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 70cde1479..f0ae1add5 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -89,8 +89,6 @@ jobs: echo "SKIP_WEBAUTHENTICATIONUI=false" >> "$GITHUB_ENV" fi - uses: actions/checkout@master - - name: Check environment variables - run: env - name: Build AuthFoundation run: | set -o pipefail @@ -135,7 +133,7 @@ jobs: -scheme OktaOAuth2 \ -destination "$DESTINATION" 2>&1 - name: Build WebAuthenticationUI - if: env.SKIP_WEBAUTHENTICATIONUI != 'false' + if: env.SKIP_WEBAUTHENTICATIONUI != 'true' run: | set -o pipefail && xcodebuild build \ -derivedDataPath ../Build/DerivedData \ @@ -143,7 +141,7 @@ jobs: -scheme WebAuthenticationUI \ -destination "$DESTINATION" 2>&1 - name: Test WebAuthenticationUI - if: env.SKIP_WEBAUTHENTICATIONUI != 'false' + if: env.SKIP_WEBAUTHENTICATIONUI != 'true' run: | set -o pipefail && xcodebuild test \ -derivedDataPath ../Build/DerivedData \