Skip to content

Commit

Permalink
use brackets for multidev_name vars
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Apr 30, 2024
1 parent 1fbfda9 commit 7f7abcc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sage-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,12 @@ jobs:
echo "✅ Sage Install Script passed!"
- name: Delete multidev
if: always()
run: terminus multidev:delete --delete-branch --yes wpcm-sage-install-tests.$multidev_name
run: terminus multidev:delete --delete-branch --yes "wpcm-sage-install-tests.${multidev_name}"
- name: Delete the multidev build artifact
if: always()
run: |
cd ~/pantheon-local-copies/wpcm-sage-install-tests
# Allow these to fail.
git fetch --tags origin || true
git tag -d pantheon_build_artifacts_$multidev_name || true
git push origin --delete pantheon_build_artifacts_$multidev_name || true
git tag -d "pantheon_build_artifacts_${multidev_name}" || true
git push origin --delete "pantheon_build_artifacts_${multidev_name}" || true

0 comments on commit 7f7abcc

Please sign in to comment.