Skip to content

Commit

Permalink
Use correct variable when checking if all platforms were a success
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Sep 26, 2024
1 parent 7e3c936 commit 48336e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -491,11 +491,11 @@ jobs:
if [ ${{ github.ref }} == 'refs/heads/production' ]; then
if [ "${{ needs.submitAndroid.result }}" != "success" ]; then
isAtLeastOnePlatformDeployed="false"
isAllPlatformsDeployed="false"
fi
else
if [ "${{ needs.uploadAndroid.result }}" != "success" ]; then
isAtLeastOnePlatformDeployed="false"
isAllPlatformsDeployed="false"
fi
fi
Expand Down

0 comments on commit 48336e3

Please sign in to comment.