From eadfc38667aa4c3d5628695fbd44a8fefe2c43b1 Mon Sep 17 00:00:00 2001 From: RBER Admin Date: Wed, 10 Dec 2025 09:37:25 +0000 Subject: [PATCH] Fix Gitea integration: use username/password instead of token MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The publish:gitea scaffolder action requires username and password for Git push operations, not just a token. Changed config to use GITEA_USERNAME and GITEA_PASSWORD environment variables. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app-config.production.yaml | 3 ++- app-config.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app-config.production.yaml b/app-config.production.yaml index ca19aff..15965d8 100644 --- a/app-config.production.yaml +++ b/app-config.production.yaml @@ -27,7 +27,8 @@ integrations: gitea: - host: git.rber.bj baseUrl: http://git.rber.bj - token: ${GITEA_TOKEN} + username: ${GITEA_USERNAME} + password: ${GITEA_PASSWORD} auth: providers: diff --git a/app-config.yaml b/app-config.yaml index ef129c3..2ee8dd1 100644 --- a/app-config.yaml +++ b/app-config.yaml @@ -45,7 +45,8 @@ integrations: gitea: - host: git.rber.bj baseUrl: http://git.rber.bj - token: ${GITEA_TOKEN} + username: ${GITEA_USERNAME} + password: ${GITEA_PASSWORD} proxy: ### Example for how to add a proxy endpoint for the frontend.