1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00
unleash.unleash/scripts/commit-coverage.sh

9 lines
287 B
Bash
Raw Normal View History

2022-05-20 11:59:42 +02:00
#!/bin/bash
2022-05-20 12:53:36 +02:00
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
2022-05-20 11:59:42 +02:00
git add coverage
git diff-index --quiet HEAD || git commit -m 'chore: update coverage reports'
git push origin