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

@@ -26,7 +26,7 @@ jobs:
- name: Build and push images
if: steps.changes.outputs.apps != ''
run: |
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
IFS=',' read -ra APPS <<< "${{ steps.changes.outputs.apps }}"
for app in "${APPS[@]}"; do
docker build \