GITHUB_TOKEN est fourni automatiquement par Gitea Actions avec droits d'écriture sur le repo
L'action de tag utilise GIT_API_TAGGING: false donc elle appelle git push — l'URL modifiée sera utilisée
## Problème
Le job `tag` dans `main.yaml` échoue au `git push` avec :
```
fatal: could not read Username for 'https://scm.cabillot.eu'
```
Le checkout configure l'auth via `includeIf` mais `anothrNick/github-tag-action` n'arrive pas à l'utiliser pour son push.
## Fix
Ajout d'un step `Configure git auth` avant l'action de tag qui injecte le token directement dans la remote URL :
```yaml
- name: Configure git auth
run: |
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@scm.cabillot.eu/perso/opencode.git"
```
## Validation
- `GITHUB_TOKEN` est fourni automatiquement par Gitea Actions avec droits d'écriture sur le repo
- L'action de tag utilise `GIT_API_TAGGING: false` donc elle appelle `git push` — l'URL modifiée sera utilisée
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Problème
Le job
tagdansmain.yamléchoue augit pushavec :Le checkout configure l'auth via
includeIfmaisanothrNick/github-tag-actionn'arrive pas à l'utiliser pour son push.Fix
Ajout d'un step
Configure git authavant l'action de tag qui injecte le token directement dans la remote URL :Validation
GITHUB_TOKENest fourni automatiquement par Gitea Actions avec droits d'écriture sur le repoGIT_API_TAGGING: falsedonc elle appellegit push— l'URL modifiée sera utilisée