Skip to content

Commit

Permalink
add string escape to fix steps
Browse files Browse the repository at this point in the history
  • Loading branch information
fdiblen committed Sep 2, 2024
1 parent cc43ad9 commit 652825d
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
id: citation
- name: List created issues
run: |
echo 'Created issues that must be completed to have fully working Python package:
* Citation data ${{ steps.citation.outputs.url }}'
echo "Created issues that must be completed to have fully working Python package:
* Citation data {{ '${{' }} steps.citation.outputs.url {{ '}}' }}"
- name: Cleanup files needed to create next steps issues
run: |
git config --global user.name 'NLeSC Python template'
Expand All @@ -42,8 +42,8 @@ jobs:
id: linting
- name: List created issues
run: |
echo 'Created issues that must be completed to have fully working Python package:
* Linting fixes ${{ steps.linting.outputs.url }}'
echo "Created issues that must be completed to have fully working Python package:
* Linting fixes {{ '${{' }} steps.linting.outputs.url {{ '}}' }}"
- name: Cleanup files needed to create next steps issues
run: |
git config --global user.name 'NLeSC Python template'
Expand All @@ -65,8 +65,8 @@ jobs:
id: readthedocs
- name: List created issues
run: |
echo 'Created issues that must be completed to have fully working Python package:
* Read the Docs instructions ${{ steps.readthedocs.outputs.url }}'
echo "Created issues that must be completed to have fully working Python package:
* Read the Docs instructions {{ '${{' }} steps.readthedocs.outputs.url {{ '}}' }}"
- name: Cleanup files needed to create next steps issues
run: |
git config --global user.name 'NLeSC Python template'
Expand All @@ -88,8 +88,8 @@ jobs:
id: zenodo
- name: List created issues
run: |
echo 'Created issues that must be completed to have fully working Python package:
* Sonarcloud integration ${{ steps.sonarcloud.outputs.url }}'
echo "Created issues that must be completed to have fully working Python package:
* Sonarcloud integration {{ '${{' }} steps.sonarcloud.outputs.url {{ '}}' }}"
- name: Cleanup files needed to create next steps issues
run: |
git config --global user.name 'NLeSC Python template'
Expand All @@ -111,8 +111,8 @@ jobs:
id: sonarcloud
- name: List created issues
run: |
echo 'Created issues that must be completed to have fully working Python package:
* Sonarcloud integration ${{ steps.sonarcloud.outputs.url }}'
echo "Created issues that must be completed to have fully working Python package:
* Sonarcloud integration {{ '${{' }} steps.sonarcloud.outputs.url {{ '}}' }}"
- name: Cleanup files needed to create next steps issues
run: |
git config --global user.name 'NLeSC Python template'
Expand Down

0 comments on commit 652825d

Please sign in to comment.