Fix unauthorized error on Gitea registry by using github.token
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 28s

This commit is contained in:
AI Assistant
2026-03-12 14:25:28 +09:00
parent fc8f341fad
commit 95c17b22ca

View File

@@ -25,7 +25,7 @@ jobs:
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} # Or Gitea access token depending on the platform
password: ${{ github.token }} # Gitea 환경에서는 기본 제공되는 github.token을 사용해야 안전하게 인증됩니다.
- name: Extract metadata (tags, labels) for Docker
id: meta