Fix image workflow: fetch extra repos from main, not primary SHA
Some checks failed
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 2s
Build and Publish Multi-Context Image / build-and-push (push) Failing after 10s

This commit is contained in:
tegwick 2026-07-06 12:48:11 +02:00
parent 817bdde604
commit d8246577db

View file

@ -41,7 +41,8 @@ jobs:
for spec in ${EXTRA_REPOS}; do
repo="${spec%@*}"
ctx="${spec#*@}"
extra_ref="${REF}"
# Extra repos track their own main branch; primary SHA is not valid there.
extra_ref="main"
wget -qO "/tmp/${ctx}.tar.gz" \
"https://forgejo.coulomb.social/${repo}/archive/${extra_ref}.tar.gz"
mkdir -p "/tmp/ctx-${ctx}"