File tree Expand file tree Collapse file tree
template/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,19 +64,19 @@ jobs:
6464
6565 {% if hosting_provider == 'netlify' -%}
6666 - name: Publish to Netlify (and render)
67- if: ${{ inputs.hosting-provider == 'netlify' }}
67+ if: {{ " ${{ inputs.hosting-provider == 'netlify' }}" }}
6868 uses: quarto-dev/quarto-actions/publish@8a96df13519ee81fd526f2dfca5962811136661b # v2.2.0
6969 with:
7070 target: netlify
71- NETLIFY_AUTH_TOKEN: ${{ secrets.netlify-token }}
71+ NETLIFY_AUTH_TOKEN: {{ ' ${{ secrets.netlify-token }}' }}
7272
7373 {% - elif hosting_provider == 'gh-pages' -%}
7474 # NOTE: If Publishing to GitHub Pages, set the permissions correctly (see above).
7575 - name: Publish to GitHub Pages (and render)
76- if: ${{ inputs.hosting-provider == 'gh-pages' }}
76+ if: {{ " ${{ inputs.hosting-provider == 'gh-pages' }}" }}
7777 uses: quarto-dev/quarto-actions/publish@8a96df13519ee81fd526f2dfca5962811136661b # v2.2.0
7878 with:
7979 target: gh-pages
8080 env:
81- GITHUB_TOKEN: ${{ secrets.github-token }}
81+ GITHUB_TOKEN: {{ ' ${{ secrets.github-token }}' }}
8282 {% - endif %}
You can’t perform that action at this time.
0 commit comments