fix(ci): artifact@v4, AUTH_GOOGLE_SECRET secret, REDIS_HOST + Telegram dans deploy.yaml
Some checks failed
CI / Lint, Unit Tests & Build (push) Successful in 6m41s
CI / Deploy production (on server) (push) Has been cancelled

ci.yaml:
- upload/download-artifact v3 → v4 (Gitea/Forgejo compatibilité)
- AUTH_GOOGLE_SECRET: vars → secrets (Google OAuth était cassé en prod)

deploy.yaml:
- Ajout REDIS_HOST=redis (manquant → Redis inaccessible au démarrage manuel)
- Ajout TELEGRAM_BOT_TOKEN + TELEGRAM_CHAT_ID (notifications manquantes)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Antigravity
2026-05-29 14:42:15 +00:00
parent 5703d5bd49
commit 8571080037
2 changed files with 8 additions and 3 deletions

View File

@@ -103,7 +103,7 @@ jobs:
- name: Upload web artifact
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
continue-on-error: true
with:
name: web-artifact
@@ -125,7 +125,7 @@ jobs:
git reset --hard origin/main
- name: Download web artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
continue-on-error: true
with:
name: web-artifact
@@ -166,7 +166,7 @@ jobs:
BRAVE_SEARCH_API_KEY: ${{ secrets.BRAVE_SEARCH_API_KEY }}
JINA_API_KEY: ${{ secrets.JINA_API_KEY }}
AUTH_GOOGLE_ID: ${{ vars.AUTH_GOOGLE_ID }}
AUTH_GOOGLE_SECRET: ${{ vars.AUTH_GOOGLE_SECRET }}
AUTH_GOOGLE_SECRET: ${{ secrets.AUTH_GOOGLE_SECRET }}
SOCKET_INTERNAL_KEY: ${{ secrets.SOCKET_INTERNAL_KEY }}
SOCKET_PORT: ${{ vars.SOCKET_PORT }}
SOCKET_HTTP_PORT: ${{ vars.SOCKET_HTTP_PORT }}