gha: aks: Fix argument in call to gha-run.sh

Fixes: #7047

Signed-off-by: Aurélien Bombo <abombo@microsoft.com>
This commit is contained in:
Aurélien Bombo 2023-06-06 11:51:18 -07:00
parent 5ad8aaf9df
commit f487199edf
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }} ref: ${{ github.event.pull_request.head.sha }}
- name: Download Azure CLI - name: Download Azure CLI
run: bash tests/integration/gha-run.sh install-az-cli run: bash tests/integration/gha-run.sh install-azure-cli
- name: Log into the Azure account - name: Log into the Azure account
run: bash tests/integration/gha-run.sh login-azure run: bash tests/integration/gha-run.sh login-azure

View File

@ -137,7 +137,7 @@ function main() {
cleanup-snp) cleanup "snp" ;; cleanup-snp) cleanup "snp" ;;
cleanup-tdx) cleanup "tdx" ;; cleanup-tdx) cleanup "tdx" ;;
delete-cluster) delete_cluster ;; delete-cluster) delete_cluster ;;
*) >&2 echo "Invalid action"; exit 2 ;; *) >&2 echo "Invalid argument"; exit 2 ;;
esac esac
} }