Skip to content

Commit

Permalink
Update change.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
chen08209 committed Nov 23, 2024
1 parent 88d5788 commit 6ea119e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 26 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/change.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,17 @@ jobs:
fi
fi
if [ -n "$currentTag" ]; then
echo "## $currentTag" >> CHANGELOG.md
echo "" >> CHANGELOG.md
echo "## $currentTag" >> NEW_CHANGELOG.md
echo "" >> NEW_CHANGELOG.md
if [ -n "$tag" ]; then
git log --pretty=format:"%B" "$tag..$currentTag" | awk 'NF {print "- " $0} !NF {print ""}' >> CHANGELOG.md
git log --pretty=format:"%B" "$tag..$currentTag" | awk 'NF {print "- " $0} !NF {print ""}' >> NEW_CHANGELOG.md
else
git log --pretty=format:"%B" "$currentTag" | awk 'NF {print "- " $0} !NF {print ""}' >> CHANGELOG.md
git log --pretty=format:"%B" "$currentTag" | awk 'NF {print "- " $0} !NF {print ""}' >> NEW_CHANGELOG.md
fi
echo "" >> CHANGELOG.md
echo "" >> NEW_CHANGELOG.md
fi
CHANGELOG.md >> NEW_CHANGELOG.md
cat NEW_CHANGELOG.md > CHANGELOG.md
currentTag=$tag
done
Expand Down
23 changes: 2 additions & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,8 @@

## v0.8.12

- Fix the problem that the download of remote resources failed after GeodataMode was turned on, which caused the application to flash back.
- Fix the problem that the download of remote resources failed after GeodataMode was turned on, which caused the
application to flash back.

- Fix edit profile error

Expand Down Expand Up @@ -662,23 +663,3 @@

- Initial commit

## v0.8.68

- Fix windows tray issues

- Support setting bypassDomain

- Update flutter version

- Fix android service issues

- Fix macos dock exit button issues

- Add route address setting

- Optimize provider view

- Update changelog

- Update CHANGELOG.md

0 comments on commit 6ea119e

Please sign in to comment.