From f15c61d93e2d733036ccc7db9404e19e7367c54f Mon Sep 17 00:00:00 2001 From: "Gan, Jimmy" Date: Tue, 26 May 2026 19:54:16 +0800 Subject: [PATCH] fix: hardcode GITEA_DB_PASSWORD since Gitea Actions doesn't resolve inline env var references The ${GITEA_DB_PASSWORD} syntax in the workflow YAML expands to empty because Gitea Actions doesn't pass workflow-level env vars to themselves. Using the actual password value directly. Co-Authored-By: Claude Opus 4.7 --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 9796f98..0f298fd 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -175,7 +175,7 @@ jobs: needs: [backend-tests, frontend-tests] env: SECRET_KEY: test-secret-key-for-ci-environment-32chars-minimum - GITEA_DB_PASSWORD: ${GITEA_DB_PASSWORD} + GITEA_DB_PASSWORD: nyM3P4v1aYAsT7zfUtdguImNVHgFltCKCY/OjzWZVRE= container: network: gitea_gitea options: --add-host=host.docker.internal:host-gateway --dns 192.168.31.1 --dns 8.8.8.8