Release: uat→main (UAT PASS Deal Dottie, Security PASS Stockboy Steve) #296
Reference in New Issue
Block a user
Delete Branch "uat"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
UAT PASS: Deal Dottie, uat HEAD
9a811f9e(CAR-1316)Security PASS: Stockboy Steve (CAR-1327)
The four `build-and-push*` jobs declared a job-level output `sha_tag: sha-${{ github.sha }}` (literal prefix concatenated with an expression). Gitea Actions does NOT substitute ${{ github.sha }} inside that concatenated value, so the literal string `sha-${{ github.sha }}` propagated into needs.<job>.outputs.sha_tag. Each deploy job's 'Determine image tag' step then expanded `echo "tag=${{ needs.<job>.outputs.sha_tag }}" >> "$GITHUB_OUTPUT"` into `echo "tag=sha-${{ github.sha }}"`, and bash parsed ${{ }} as a parameter expansion -> bad substitution (CAR-1316, run #2994). Switch the consumer-side fix: read $GITHUB_SHA (bash env var, no template) directly inside the 8 'else' branches in deploy-dev and deploy-uat. Leave the 4 build-and-push* outputs alone — they're only consumed by these 8 steps, so the consumer fix fully resolves the failure with the smallest blast radius. Refs: CAR-1316, CAR-1195, CAR-1194.