We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6295796 commit ffc8104Copy full SHA for ffc8104
1 file changed
{{cookiecutter.project_name}}/.github/workflows/build-python.yml
@@ -29,9 +29,9 @@ on:
29
30
jobs:
31
build-package-python:
32
- name: Run Python Package Build Check on {% raw %}${{ matrix.os }}{% endraw %}
+ name: Run Python Package Build Check on {{ "${{ matrix.os }}" }}
33
# Building pure Python packages should work reliably across OSs.
34
- runs-on: {% raw %}${{ matrix.os }}{% endraw %}
+ runs-on: {{ "${{ matrix.os }}" }}
35
strategy:
36
matrix:
37
os: [ubuntu-latest]
@@ -55,6 +55,6 @@ jobs:
55
- name: Upload built packages artifact
56
uses: actions/upload-artifact@v4
57
with:
58
- name: distribution-packages-{% raw %}{{ github.event.inputs.tag }}{% endraw %}
+ name: distribution-packages-{{ "${{ github.event.inputs.tag }}" }}
59
path: dist/
60
retention-days: 7
0 commit comments