diff --git a/.github/workflows/build_docs.yml b/.github/workflows/build_docs.yml index 528438d..fcb4adc 100644 --- a/.github/workflows/build_docs.yml +++ b/.github/workflows/build_docs.yml @@ -32,10 +32,10 @@ jobs: run: poetry install --no-interaction --no-root --with docs - name: Quardo Doc Build run: | - quartodoc build --config doc/_quarto.yml + poetry run quartodoc build --config doc/_quarto.yml - uses: quarto-dev/quarto-actions/setup@v2 - name: Render and publish to gh pages - uses: quarto-dev/quarto-actions/publish@v2 - with: - target: gh-pages - path: docs \ No newline at end of file + run: | + git config --global user.email "quarto-github-actions-publish@example.com" + git config --global user.name "Quarto GHA Workflow Runner" + poetry run quarto publish gh-pages docs --no-browser \ No newline at end of file