fix(ci): remove errant space in github.sha template expression

Space in `github.sha ::7` caused workflow validation to fail on push
events (0s run, no jobs). Fixes the template syntax so the SHA
subexpression is `github.sha::7`.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
groombook-ci[bot]
2026-03-29 22:39:15 +00:00
parent 54c4ee3555
commit 0013afff7d
+1 -1
View File
@@ -210,7 +210,7 @@ jobs:
- name: Deploy to groombook-dev
env:
TAG: pr-${{ github.event.pull_request.number }}-${{ github.sha ::7}}
TAG: pr-${{ github.event.pull_request.number }}-${{ github.sha::7}}
PR_NUM: ${{ github.event.pull_request.number }}
run: |
echo "Deploying images tagged $TAG to groombook-dev..."