Skip to content

Commit f6d543d

Browse files
committed
fix raw ccokicutter strings
1 parent db58893 commit f6d543d

File tree

1 file changed

+4
-4
lines changed
  • {{ cookiecutter.folder_name }}/.github/workflows

1 file changed

+4
-4
lines changed

{{ cookiecutter.folder_name }}/.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
steps:
1717
- name: checkout
1818
uses: actions/checkout@v4
19-
{ % raw % }
19+
{% raw %}
2020
- name: Set up MicroMamba and install dependencies with Python ${{ matrix.python-version }}
2121
uses: mamba-org/setup-micromamba@v1
2222
with:
2323
environment-file: environment.yml
2424
create-args: >-
2525
python=${{ matrix.python-version }}
26-
{ % endraw % }
26+
{% endraw %}
2727
- name: Lint with ruff
2828
run: |
2929
ruff check
@@ -43,9 +43,9 @@ jobs:
4343
with:
4444
fail_ci_if_error: true
4545
verbose: true
46-
{ % raw % }
46+
{% raw %}
4747
token: ${{ secrets.CODECOV_TOKEN }}
48-
{ % endraw % }
48+
{% endraw %}
4949

5050
PyPi-Deploy:
5151
name: Publish {{ cookiecutter.package_name }} Package to PyPI

0 commit comments

Comments
 (0)