better authentification fix

Signed-off-by: Philippe Leprince <philippe@ynput.io>
This commit is contained in:
Philippe Leprince 2025-05-09 17:10:26 +02:00
parent dc9d65d9b8
commit 5899f484a5

View file

@ -68,8 +68,8 @@ jobs:
- name: 🔑 Set Authentication
run: |
git config --global user.name "${{ secrets.user }}"
git config --global user.email "${{ secrets.email }}"
git config --global user.name "${{ secrets.user || secrets.CI_USER }}"
git config --global user.email "${{ secrets.email || secrets.CI_EMAIL }}"
- name: Set up Python
uses: actions/setup-python@v4