Merge pull request #6053 from felder/felder_DH-361 #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- 'docs/**' | ||
name: Quarto Publish | ||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
# Don't run in forks, unless the forker sets a secret variable. I chose to | ||
# use a secret rather than a var because secrets are not copied to forks. | ||
if: ${{ github.event.repository.fork == false || secrets.ALLOW_FORK_DEPLOY == 'true' }} | ||
Check failure on line 16 in .github/workflows/quarto-docs.yml GitHub Actions / Quarto PublishInvalid workflow file
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
- name: Render and Publish | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
path: ./docs | ||
target: gh-pages | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |