Skip to content

Commit

Permalink
Remove extra quote
Browse files Browse the repository at this point in the history
  • Loading branch information
theoctober19th committed Jun 14, 2024
1 parent d179cfc commit 9c19b59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/setup-azure-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9c19b59

Please sign in to comment.