mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 16:16:24 +00:00
14 lines
217 B
Bash
Executable File
14 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
|