Skip to content

Commit

Permalink
fix delete app syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwahiremat committed Jul 17, 2023
1 parent 4dc85c0 commit 05b3256
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,9 @@ jobs:
env:
UNIQUE_APP_NAME: ${{ steps.gen-id.outputs.TEST_UNIQUE_APP_NAME }}
run:
app_name="${{ matrix.app }}"
app_name=${{ matrix.app }}
if [[ "${{ matrix.credential }}" == "aws" ]]; then
app_name="$UNIQUE_APP_NAME"
app_name=$UNIQUE_APP_NAME
fi
rad app delete app_name -y
- name: Delete Azure Resource Group
Expand Down

0 comments on commit 05b3256

Please sign in to comment.