Skip to content

Commit

Permalink
Update change.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
chen08209 committed Dec 6, 2024
1 parent 04d6a92 commit 4b32a09
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/change.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,19 @@ 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
currentTag=$tag
done
cat CHANGELOG.md >> NEW_CHANGELOG.md
cat NEW_CHANGELOG.md > CHANGELOG.md
- name: Commit
run: |
Expand Down
6 changes: 3 additions & 3 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 @@ -660,5 +661,4 @@

- update mobile_scanner

- Initial commit

- Initial commit

0 comments on commit 4b32a09

Please sign in to comment.