Skip to content

Commit

Permalink
fix(scripts): fix changelog commits
Browse files Browse the repository at this point in the history
  • Loading branch information
comfysage committed Jun 10, 2024
1 parent 50b9365 commit 1036b3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/release/nightly/create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
# nightly
# ----------------------------------------------------------------------------
./scripts/release/nightly/changelog.sh > CHANGELOG.md
git reset
git add CHANGELOG.md
git commit -m 'chore(changelog): update nightly changelog'
git tag -f nightly
git push --tags --force

Expand Down
3 changes: 3 additions & 0 deletions scripts/release/stable/create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ n_version="$(git cliff --bumped-version | sed -e 's/^v//')"
# bumped version
# ----------------------------------------------------------------------------
./scripts/release/stable/changelog.sh > CHANGELOG.md
git reset
git add CHANGELOG.md
git commit -m "chore(changelog): create $version changelog"
git tag -f "$version"
git push --tags --force

Expand Down

0 comments on commit 1036b3a

Please sign in to comment.