fix(ci): Renommage secrets pour éviter restriction préfixe FORGEJO_

Forgejo does not allow secret names starting with FORGEJO_. Renamed:
- FORGEJO_TOKEN -> GIT_TOKEN
- FORGEJO_REPO_URL -> GIT_REPO_URL
This commit is contained in:
Tellsanguis 2025-11-13 19:41:46 +01:00
parent 70c26580c2
commit a00f8d57a1
3 changed files with 9 additions and 9 deletions

View file

@ -52,7 +52,7 @@ jobs:
TF_VAR_proxmox_token_id: ${{ secrets.PROXMOX_TOKEN_ID }}
TF_VAR_proxmox_token_secret: ${{ secrets.PROXMOX_TOKEN_SECRET }}
TF_VAR_ssh_public_key: ${{ secrets.SSH_PUBLIC_KEY }}
TF_VAR_forgejo_token: ${{ secrets.FORGEJO_TOKEN }}
TF_VAR_forgejo_token: ${{ secrets.GIT_TOKEN }}
- name: Upload Terraform Plan
if: github.event_name == 'push' && github.ref == 'refs/heads/main'