We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 437a0c0 commit 786a2e9Copy full SHA for 786a2e9
1 file changed
.github/workflows/deploy-sandbox.yml
@@ -27,12 +27,12 @@ jobs:
27
steps:
28
- name: Validate inputs
29
run: |
30
- if ! [[ "$SANDBOX_WORKSPACE" =~ ^[a-z0-9]{1,9}$ ]]; then
+ if ! [[ "$SANDBOX_NAME" =~ ^[a-z0-9]{1,9}$ ]]; then
31
echo "Sandbox name must match [a-z0-9]{1,9} (lowercase letters and digits only, 1-9 chars)."
32
exit 1
33
fi
34
env:
35
- SANDBOX_WORKSPACE: ${{ github.event.inputs.sandbox_name }}
+ SANDBOX_NAME: ${{ github.event.inputs.sandbox_name }}
36
37
# Checkout the repository to the GitHub Actions runner
38
- name: Checkout Base
0 commit comments