fix(ci): use universal REGISTRY_PAT secret for Forgejo registry auth
Build (prod) / Build and push image (push) Successful in 34s

This commit is contained in:
Story Crater Bot
2026-08-21 20:52:32 -07:00
parent afcc28fca0
commit 0fe9de6fbd
2 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -67,10 +67,10 @@ jobs:
- name: Registry login
run: |
echo "${GITHUB_TOKEN}" | docker login "${REGISTRY}" \
echo "${REGISTRY_PAT}" | docker login "${REGISTRY}" \
--username rock --password-stdin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REGISTRY_PAT: ${{ secrets.REGISTRY_PAT }}
- name: Build
run: |