1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-26 13:48:33 +02:00

fix: coverage action need username

This commit is contained in:
Ivar Conradi Østhus 2022-05-20 12:53:36 +02:00
parent 090d7155e0
commit 7b7f0b84e8
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -1,5 +1,9 @@
#!/bin/bash
git config --global user.name "${GH_NAME}"
git config --global user.email "${GH_EMAIL}"
echo "machine github.com login ${GH_NAME} password ${GH_TOKEN}" > ~/.netrc
git add coverage
git diff-index --quiet HEAD || git commit -m 'chore: update coverage reports'
git push origin