fix issue where changelog is always slightly out of date on release tags

This commit is contained in:
Jonathan Wren 2022-10-30 16:26:04 -07:00
parent 44e2ace833
commit c6754d50f7
No known key found for this signature in database

View file

@ -151,6 +151,9 @@ jobs:
git add "$FILENAME" git add "$FILENAME"
git commit -m "Update changelog [ci skip]" git commit -m "Update changelog [ci skip]"
git push origin "$BRANCH" git push origin "$BRANCH"
# update the tag to include the changelog
git tag -fam "${GITHUB_REF##*/}" "${GITHUB_REF##*/}"
git push --tags --force
- name: Merge to Release branch - name: Merge to Release branch
if: env.FULL_RELEASE == 'true' if: env.FULL_RELEASE == 'true'