Skip to content

Commit

Permalink
Corrected the else if statement in workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
nirajCITZ committed Sep 18, 2023
1 parent 80a9d11 commit 6f8678f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/aps-cypress-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
echo ${{ runner.arch }}
if [ "${{ runner.arch }}" == "X64" ]; then
echo "::set-output name=my_variable::gwa_Linux_x86_64.tgz"
else if [ "${{ runner.arch }}" == "ARM64" ]; then
elif [ "${{ runner.arch }}" == "ARM64" ]; then
echo "::set-output name=my_variable::gwa_Linux_arm64.tgz"
else
echo "unsupported architecture"
Expand Down

0 comments on commit 6f8678f

Please sign in to comment.