Skip to content

Commit

Permalink
add missing condition in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
anakin87 committed Apr 9, 2024
1 parent b6543a1 commit 7f03afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
pip install "reno<5"
- name: Generate release notes for release candidates - minor releases
if: steps.version.outputs.current_pre_release != ''
if: steps.version.outputs.current_pre_release != '' && endsWith(steps.version.outputs.current_release, '.0')
env:
# When generating notes for release candidates of minor versions, pick every vX.Y.Z-rcN but
# stop when encounter vX.Y.Z-rc0. The -rc0 tag is added automatically when
Expand Down

0 comments on commit 7f03afb

Please sign in to comment.