From 0ddfed4f07fd7c4fcab4bd9f4be46f049e752ef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joe=20K=C3=BCng?= Date: Wed, 18 Feb 2026 21:57:23 +0100 Subject: [PATCH] fix(back-end): try fix profile manager --- .gitea/workflows/cicd.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/cicd.yaml b/.gitea/workflows/cicd.yaml index 0830c81..ac3cc93 100644 --- a/.gitea/workflows/cicd.yaml +++ b/.gitea/workflows/cicd.yaml @@ -146,9 +146,12 @@ jobs: DB_PASS="${{ secrets.DB_PASSWORD_DEV }}" fi - # 3. Append DB credentials + # 3. Append DB and Docker credentials printf '\nDB_URL=%s\nDB_USERNAME=%s\nDB_PASSWORD=%s\n' \ "$DB_URL" "$DB_USER" "$DB_PASS" >> /tmp/full_env.env + + printf 'REGISTRY_URL=%s\nREPO_OWNER=%s\nTAG=%s\n' \ + "${{ secrets.REGISTRY_URL }}" "$OWNER_LOWER" "$TAG" >> /tmp/full_env.env # 4. Debug: print content (for debug purposes) echo "Preparing to send env file with variables:"