From f572e0a8f8d361c552817693a90b4cf41f056fd9 Mon Sep 17 00:00:00 2001 From: Paperclip Date: Mon, 30 Mar 2026 13:35:47 +0000 Subject: [PATCH] fix(ci): use valid GitHub Actions expression syntax for SHA - Replace invalid ${{ github.sha::7 }} with ${{ github.sha }} and shell ${SHA::7} for substring extraction - Add SHA env var to deploy-dev job Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b58a66b..dd48fc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -218,9 +218,10 @@ jobs: - name: Deploy to groombook-dev env: - TAG: pr-${{ github.event.pull_request.number }}-${{ github.sha::7 }} PR_NUM: ${{ github.event.pull_request.number }} + SHA: ${{ github.sha }} run: | + TAG="pr-$PR_NUM-${SHA::7}" echo "Deploying images tagged $TAG to groombook-dev..." # Run migration with PR image