Skip to content

Commit

Permalink
fix change log generation
Browse files Browse the repository at this point in the history
  • Loading branch information
shenlebantongying authored Oct 19, 2024
1 parent 5173653 commit a4e49e9
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/Release-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,35 +141,31 @@ jobs:
id: shortSHA
run: |
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Get changelog tags
- name: Get previous tag
id: changelogTags
run: |
if [[ '${{env.prerelease}}' == 'true' ]]
then
echo "This is a pre-release"
previousTag=$(git tag --sort=-creatordate | grep "^v" | sed -n 2p)
currentTag=$(git tag --sort=-creatordate | grep "^v" | sed -n 1p)
previousTag=$(git tag --sort=-creatordate | grep "^v" | head -n 1)
else
echo "This is not a pre-release"
previousTag=$(git tag --sort=-creatordate | grep "^v" | grep -v "alpha" | sed -n 2p)
currentTag=$(git tag --sort=-creatordate | grep "^v" | grep -v "alpha" | sed -n 1p)
previousTag=$(git tag --sort=-creatordate | grep "^v" | grep -v "alpha" | head -n 1)
fi
echo "prev_tag=$previousTag" >> $GITHUB_OUTPUT
echo "curr_tag=$currentTag" >> $GITHUB_OUTPUT
echo "previousTag : $previousTag"
echo "currentTag : $currentTag"
- name: Get new tag
id: getNewTag
run: |
echo "newTag=v${{ env.version }}-${{ env.versionSuffix }}.${{ steps.shortSHA.outputs.sha_short }}" >> $GITHUB_OUTPUT
- name: Build Changelog
id: build_changelog
uses: mikepenz/release-changelog-builder-action@v3
uses: mikepenz/release-changelog-builder-action@v5
with:
commitMode: false
fromTag: ${{ steps.changelogTags.outputs.prev_tag }}
toTag: "${{ steps.changelogTags.outputs.curr_tag }}"
toTag: ${{ github.sha }}
configurationJson: |
{
"template": "#{{CHANGELOG}}\n\n<details>\n<summary>🔴 Uncategorized</summary>\n\n#{{UNCATEGORIZED}}\n</details>",
Expand Down Expand Up @@ -232,7 +228,7 @@ jobs:
if-no-files-found: error
retention-days: 7
path: ./changelog.txt

publish:
needs: [build_macOS, build_Windows, generate_other_staffs]
runs-on: ubuntu-24.04
Expand Down

0 comments on commit a4e49e9

Please sign in to comment.