From 9c19b590a9446ff545cdeba004a09dc20b5798f7 Mon Sep 17 00:00:00 2001 From: Bikalpa Dhakal Date: Fri, 14 Jun 2024 20:25:34 +0545 Subject: [PATCH] Remove extra quote --- .github/workflows/integration.yaml | 6 +----- tests/integration/setup-azure-cli.sh | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 648618c5..14264965 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -50,15 +50,11 @@ jobs: - name: Run tests env: AZURE_STORAGE_ACCOUNT: ${{ secrets.AZURE_STORAGE_ACCOUNT }} - AZURE_STORAGE_KEY: ${{ secrets.AZURE_STORAGE_KEY }}" + AZURE_STORAGE_KEY: ${{ secrets.AZURE_STORAGE_KEY }} run: | # Unpack Artifact mv charmed-spark/${{ steps.artifact.outputs.base_artifact_name }} . - # Import artifact into docker with new tag - sudo make docker-import REPOSITORY=ghcr.io/canonical/ PREFIX=test- \ - -o ${{ steps.artifact.outputs.base_artifact_name }} - # Import artifact into microk8s to be used in integration tests sudo make microk8s-import PREFIX=test- REPOSITORY=ghcr.io/canonical/ \ -o ${{ steps.artifact.outputs.base_artifact_name }} diff --git a/tests/integration/setup-azure-cli.sh b/tests/integration/setup-azure-cli.sh index 16aea903..5ed18cfa 100755 --- a/tests/integration/setup-azure-cli.sh +++ b/tests/integration/setup-azure-cli.sh @@ -5,7 +5,7 @@ sudo snap install azcli # Early check to see if the two required environment variables are set. -if [[ -z "${AZURE_STORAGE_ACCOUNT}" || -z "{$AZURE_STORAGE_KEY}" ]]; then +if [[ -z "${AZURE_STORAGE_ACCOUNT}" || -z "${$AZURE_STORAGE_KEY}" ]]; then echo "Error: AZURE_STORAGE_ACCOUNT and/or AZURE_STORAGE_KEY variable is not set." exit 1 fi