fix: pass LOCAL_OUTLINE_URL and LOCAL_OUTLINE_TOKEN to container
All checks were successful
Deploy / deploy (push) Successful in 12s

Both the deploy workflow (.env generation) and docker-compose were
missing the local instance env vars, so entrypoint.sh never had them
to write into settings.json.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-19 00:12:30 +01:00
parent 7e353afd3e
commit 644fe29eaf
2 changed files with 4 additions and 0 deletions

View File

@@ -45,6 +45,8 @@ jobs:
cat > .env << EOF
OUTLINE_URL=http://outline:3000
OUTLINE_TOKEN=${{ secrets.OUTLINE_TOKEN }}
LOCAL_OUTLINE_URL=${{ secrets.LOCAL_OUTLINE_URL }}
LOCAL_OUTLINE_TOKEN=${{ secrets.LOCAL_OUTLINE_TOKEN }}
TS_AUTHKEY=${{ secrets.TS_AUTHKEY }}
EOF