Skip to content

Commit

Permalink
fix(workflow): Version in pyproject.toml wasn't updating
Browse files Browse the repository at this point in the history
  • Loading branch information
proffapt committed Jul 21, 2023
1 parent 3ab0b32 commit 99b743d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,13 @@ jobs:
for file in "${files[@]}"; do
if [ -n "$(git status --porcelain $file)" ]; then
git add $file
if [ "$file" == ".github/CHANGELOG.md" ]; then
git commit -S -m "docs(changelog): update $(basename $file)"
elif [ "$file" == "pyproject.toml" ]; then
git commit -S -m "chore(release): update $(basename $file)"
fi
git push origin $(git rev-parse --abbrev-ref HEAD)
else
echo "No changes in $file."
Expand Down

0 comments on commit 99b743d

Please sign in to comment.