From 6f8678f47d1f570cb55d4529c63530492f8d712c Mon Sep 17 00:00:00 2001 From: Niraj Patel Date: Sun, 17 Sep 2023 22:04:59 -0700 Subject: [PATCH] Corrected the else if statement in workflow file --- .github/workflows/aps-cypress-e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aps-cypress-e2e.yaml b/.github/workflows/aps-cypress-e2e.yaml index f8ae02cb5..5b5eea26e 100644 --- a/.github/workflows/aps-cypress-e2e.yaml +++ b/.github/workflows/aps-cypress-e2e.yaml @@ -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"