We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84bbc40 commit cf55af1Copy full SHA for cf55af1
.github/workflows/changelog-generate.yml
@@ -21,14 +21,15 @@ jobs:
21
exclude_types: draft
22
view_top: 1
23
24
+ # Returns the version without a leading v
25
- name: Get new version
26
id: future_version
27
uses: Saionaro/[email protected]
28
29
- name: Generate changelog between ${{ steps.last_version.outputs.tag_name }} and v${{ steps.future_version.outputs.version }}
30
uses: docker://ferrarimarco/github-changelog-generator
31
# If we have a version change
- if: contains(steps.last_version.outputs.tag_name, steps.future_version.outputs.version) == false
32
+ if: steps.last_version.outputs.tag_name != format('{{v{0}}}', steps.future_version.outputs.version)
33
with:
34
args: >
35
-t ${{ secrets.GITHUB_TOKEN }}
0 commit comments