ci: Double-quote variables in GitHub Actions

This is best practice for shell scripts.

Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com>
This commit is contained in:
Demi Marie Obenour
2026-04-09 13:00:24 -04:00
committed by Bo Chen
parent 9d47769bc2
commit 23e139c0f8
5 changed files with 31 additions and 33 deletions

View File

@@ -52,7 +52,7 @@ jobs:
popd
mkdir -p "$HOME/workloads"
az storage blob download --container-name private-images --file "$IMG_GZ_PATH" --name "$IMG_GZ_BLOB_NAME" --connection-string "${{ secrets.CH_PRIVATE_IMAGES }}"
gzip -d $IMG_GZ_PATH
gzip -d "$IMG_GZ_PATH"
- name: Run Windows guest integration tests
if: ${{ github.event_name != 'pull_request' }}
timeout-minutes: 30