fix authentification error

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

View file

@ -66,6 +66,11 @@ jobs:
fetch-depth: 0
submodules: true
- name: 🔑 Set Authentication
run: |
git config --global user.name "${{ secrets.user }}"
git config --global user.email "${{ secrets.email }}"
- name: Set up Python
uses: actions/setup-python@v4
with: