Skip to content

Commit 24b8f7f

Browse files
committed
Revert "feat: attempt to fix jinja escaping"
This reverts commit f716c09.
1 parent f716c09 commit 24b8f7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

{{cookiecutter.project_name}}/.github/workflows/release-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ jobs:
7070
# This action requires a standard CHANGELOG.md format.
7171
- name: Get Release Notes from Changelog
7272
id: changelog
73-
uses: simple-changelog/action@v3
73+
uses: simple-changelog/action@v3 # Action to parse CHANGELOG.md
7474
with:
7575
path: CHANGELOG.md # Path to your CHANGELOG.md
76-
tag: {% raw %}${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag }}{% endraw %}
76+
tag: { "${{ github.event_name == 'push' && github.ref_name || github.event.inputs.tag }}" } # Pass the tag name
7777

7878
# Define outputs from this job that other jobs (like create_github_release) can use.
7979
outputs:

0 commit comments

Comments
 (0)