We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f716c09 commit 24b8f7fCopy full SHA for 24b8f7f
{{cookiecutter.project_name}}/.github/workflows/release-python.yml
@@ -70,10 +70,10 @@ jobs:
70
# This action requires a standard CHANGELOG.md format.
71
- name: Get Release Notes from Changelog
72
id: changelog
73
- uses: simple-changelog/action@v3
+ uses: simple-changelog/action@v3 # Action to parse CHANGELOG.md
74
with:
75
path: CHANGELOG.md # Path to your CHANGELOG.md
76
- tag: {% raw %}${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag }}{% endraw %}
+ tag: { "${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag }}" } # Pass the tag name
77
78
# Define outputs from this job that other jobs (like create_github_release) can use.
79
outputs:
0 commit comments