Skip to content

Commit

Permalink
Invert skip condition for building the baseline artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Oct 2, 2024
1 parent c283f7c commit 4097a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2ePerformanceTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
name: Build apk from latest release as a baseline
uses: ./.github/workflows/buildAndroid.yml
needs: prep
if: ${{ fromJSON(needs.prep.outputs.BASELINE_ARTIFACT_FOUND) }}
if: ${{ !fromJSON(needs.prep.outputs.BASELINE_ARTIFACT_FOUND) }}
secrets: inherit
with:
type: e2e
Expand Down

0 comments on commit 4097a12

Please sign in to comment.