Release: uat→main (UAT PASS Deal Dottie, Security PASS Stockboy Steve) #296

Merged
Coupon Carl merged 3 commits from uat into main 2026-06-08 13:10:54 +00:00
Owner

UAT PASS: Deal Dottie, uat HEAD 9a811f9e (CAR-1316)
Security PASS: Stockboy Steve (CAR-1327)

UAT PASS: Deal Dottie, uat HEAD 9a811f9e (CAR-1316) Security PASS: Stockboy Steve (CAR-1327)
Coupon Carl added 3 commits 2026-06-08 13:10:48 +00:00
fix(ci): deploy jobs compute sha tag from $GITHUB_SHA (CAR-1316, CAR-1195)
CI / audit (pull_request) Successful in 10s
CI / lint (pull_request) Successful in 14s
CI / test (pull_request) Successful in 15s
CI / build-and-push-receiptwitness (pull_request) Has been skipped
CI / build-and-push-api (pull_request) Has been skipped
CI / build-and-push-auth (pull_request) Has been skipped
CI / e2e (pull_request) Successful in 40s
CI / build-and-push (pull_request) Has been skipped
CI / deploy-dev (pull_request) Has been skipped
CI / deploy-uat (pull_request) Has been skipped
CI / lighthouse (pull_request) Failing after 1m14s
04529666fc
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.
Merge pull request 'fix(ci): deploy jobs compute sha tag from $GITHUB_SHA (CAR-1316, CAR-1195)' (#292) from betty/car-1319-sha-tag-fix into dev
CI / test (push) Successful in 13s
CI / lint (push) Successful in 13s
CI / audit (push) Successful in 10s
CI / e2e (push) Successful in 54s
CI / lighthouse (push) Failing after 1m23s
CI / build-and-push-api (push) Successful in 1m34s
CI / build-and-push-receiptwitness (push) Successful in 2m14s
CI / build-and-push-auth (push) Successful in 38s
CI / build-and-push (push) Successful in 1m4s
CI / deploy-uat (push) Has been skipped
CI / deploy-dev (push) Successful in 9s
CI / lint (pull_request) Successful in 10s
CI / test (pull_request) Successful in 12s
CI / audit (pull_request) Successful in 11s
CI / e2e (pull_request) Successful in 43s
CI / build-and-push-api (pull_request) Has been skipped
CI / build-and-push-receiptwitness (pull_request) Has been skipped
CI / build-and-push-auth (pull_request) Has been skipped
CI / lighthouse (pull_request) Failing after 1m20s
CI / build-and-push (pull_request) Has been skipped
CI / deploy-dev (pull_request) Has been skipped
CI / deploy-uat (pull_request) Has been skipped
6abbc2f04e
Merge pull request 'promote: deploy jobs compute sha tag from $GITHUB_SHA (CAR-1319, CAR-1316)' (#295) from dev into uat
CI / lint (push) Successful in 12s
CI / test (push) Successful in 10s
CI / audit (push) Successful in 9s
CI / e2e (push) Successful in 40s
CI / lighthouse (push) Failing after 1m18s
CI / build-and-push-receiptwitness (push) Successful in 2m19s
CI / build-and-push-api (push) Successful in 1m27s
CI / build-and-push-auth (push) Successful in 1m1s
CI / build-and-push (push) Successful in 1m1s
CI / deploy-dev (push) Has been skipped
CI / deploy-uat (push) Successful in 6s
CI / deploy-dev (pull_request) Has been skipped
CI / deploy-uat (pull_request) Has been skipped
CI / test (pull_request) Successful in 13s
CI / audit (pull_request) Successful in 12s
CI / e2e (pull_request) Successful in 44s
CI / build-and-push (pull_request) Has been skipped
CI / lint (pull_request) Successful in 13s
CI / build-and-push-api (pull_request) Has been skipped
CI / build-and-push-receiptwitness (pull_request) Has been skipped
CI / build-and-push-auth (pull_request) Has been skipped
CI / lighthouse (pull_request) Failing after 1m41s
9a811f9e93
Coupon Carl merged commit 90031d65a3 into main 2026-06-08 13:10:54 +00:00
Sign in to join this conversation.