Fix registry auth: use REGISTRY_TOKEN secret instead of gitea.token
All checks were successful
CI / lint-and-test (push) Successful in 18s
CI / build (push) Successful in 19s

This commit is contained in:
Julia McGhee
2026-03-21 18:12:06 +00:00
parent d7f0931fa6
commit 580c6dced7
3 changed files with 3 additions and 3 deletions

View File

@@ -72,7 +72,7 @@ jobs:
fi
done
if [ "$HAS_IMAGES" = "true" ]; then
echo "${{ gitea.token }}" | docker login gitea.coreworlds.io -u ${{ gitea.actor }} --password-stdin
echo "${{ secrets.REGISTRY_TOKEN }}" | docker login gitea.coreworlds.io -u lazorgurl --password-stdin
for app in web api harness; do
if echo "$CHANGED" | grep -qE "^(apps/${app}/|packages/)"; then
docker push gitea.coreworlds.io/lazorgurl/homelab-${app}:${{ gitea.sha }}