Skip to content

Commit

Permalink
Dont commit the CHANGELOG.md changes on prerealese build
Browse files Browse the repository at this point in the history
  • Loading branch information
krypciak committed Jun 21, 2024
1 parent 95946c6 commit ea2d0bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ jobs:
run: |
sed -i "/\[Unreleased\]/a ## [$VERSION_NUMERIC] newDateHere" ./CHANGELOG.md
sed -i "s/newDateHere/$(date '+%Y-%m-%d')/g" ./CHANGELOG.md
git add ./CHANGELOG.md
if [ $IS_PREREALESE = false ]; then
git add ./CHANGELOG.md
fi
- name: Commit changes
run: |
Expand Down

0 comments on commit ea2d0bb

Please sign in to comment.