Skip to content

Commit

Permalink
Use another changelog parser
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Nov 6, 2023
1 parent facfbc6 commit e975957
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ jobs:
fetch-depth: 0 # To ensure we have all tags
- name: Get Latest Changelog Version
id: changelog
uses: mindsers/changelog-reader-action@v2.2.2
uses: release-flow/keep-a-changelog-action@v2
with:
validation_level: error
command: query
- name: Get the Newest Tag
id: newest-tag
run: |
Expand All @@ -135,7 +135,7 @@ jobs:
if: "${{ steps.changelog.outputs.version != steps.newest-tag.outputs.version }}"
# If the latest tag is not the same as the latest changelog version, that means it's time for a new release
run: |
git tag "${{ steps.changelog.outputs.version }}"
git tag v"${{ steps.changelog.outputs.version }}"
git push --tags
- name: Download Artifacts
if: "${{ steps.changelog.outputs.version != steps.newest-tag.outputs.version }}"
Expand Down

0 comments on commit e975957

Please sign in to comment.