Skip to content

Commit 786a2e9

Browse files
authored
Rename SANDBOX_WORKSPACE -> SANDBOX_NAME
1 parent 437a0c0 commit 786a2e9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy-sandbox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
steps:
2828
- name: Validate inputs
2929
run: |
30-
if ! [[ "$SANDBOX_WORKSPACE" =~ ^[a-z0-9]{1,9}$ ]]; then
30+
if ! [[ "$SANDBOX_NAME" =~ ^[a-z0-9]{1,9}$ ]]; then
3131
echo "Sandbox name must match [a-z0-9]{1,9} (lowercase letters and digits only, 1-9 chars)."
3232
exit 1
3333
fi
3434
env:
35-
SANDBOX_WORKSPACE: ${{ github.event.inputs.sandbox_name }}
35+
SANDBOX_NAME: ${{ github.event.inputs.sandbox_name }}
3636

3737
# Checkout the repository to the GitHub Actions runner
3838
- name: Checkout Base

0 commit comments

Comments
 (0)