Skip to content

Commit ffc8104

Browse files
committed
fix: fix escaping in build-python.yml
1 parent 6295796 commit ffc8104

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ on:
2929

3030
jobs:
3131
build-package-python:
32-
name: Run Python Package Build Check on {% raw %}${{ matrix.os }}{% endraw %}
32+
name: Run Python Package Build Check on {{ "${{ matrix.os }}" }}
3333
# Building pure Python packages should work reliably across OSs.
34-
runs-on: {% raw %}${{ matrix.os }}{% endraw %}
34+
runs-on: {{ "${{ matrix.os }}" }}
3535
strategy:
3636
matrix:
3737
os: [ubuntu-latest]
@@ -55,6 +55,6 @@ jobs:
5555
- name: Upload built packages artifact
5656
uses: actions/upload-artifact@v4
5757
with:
58-
name: distribution-packages-{% raw %}{{ github.event.inputs.tag }}{% endraw %}
58+
name: distribution-packages-{{ "${{ github.event.inputs.tag }}" }}
5959
path: dist/
6060
retention-days: 7

0 commit comments

Comments
 (0)