mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 03:57:26 +00:00
13 lines
217 B
Bash
Executable file
13 lines
217 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cp src/scripts/dist/codecov.sh dist/codecov.sh
|
|
git add dist/codecov.sh
|
|
|
|
git diff --cached --name-only | if grep --quiet "src/version"
|
|
then
|
|
python changelog.py
|
|
fi
|
|
|
|
git add CHANGELOG.md
|