Skip to content

Commit

Permalink
Fix stupid logic error
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenachbaur-okta committed Aug 15, 2024
1 parent e933af3 commit 099e739
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -135,15 +133,15 @@ 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 \
-clonedSourcePackagesDirPath ../Build/ClonedSources \
-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 \
Expand Down

0 comments on commit 099e739

Please sign in to comment.