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 197c6ad commit f2454e8Copy full SHA for f2454e8
.github/workflows/main.yml
@@ -158,7 +158,9 @@ jobs:
158
run: pip install .
159
- name: Compile Release Notes Draft
160
if: ${{ !contains(github.ref, 'refs/tags/') }}
161
- run: towncrier build --draft --version "${{ needs.lint.outputs.version }}" > release-notes.rst
+ run: towncrier build --draft --version "${version}" > release-notes.rst
162
+ env:
163
+ version: ${{ needs.lint.outputs.version }}
164
- name: Extract release notes from Git tag
165
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
166
run: |
0 commit comments