We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3c5530 commit aed2ecfCopy full SHA for aed2ecf
.github/workflows/python-package.yml
@@ -39,7 +39,15 @@ jobs:
39
40
- name: Show package version
41
run: grep -r "version" pyproject.toml || grep -r "__version__" rtichoke/ || python -c "import rtichoke; print(rtichoke.__version__)"
42
-
+
43
+ - name: Set up Quarto
44
+ uses: quarto-dev/quarto-actions/setup@v2
45
46
+ - name: Set Git identity for Quarto publishing
47
+ run: |
48
+ git config --global user.name "github-actions[bot]"
49
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
50
51
- name: Render and Publish
52
working-directory: docs
53
run: uv run quarto publish gh-pages --no-browser --token "${{ secrets.GITHUB_TOKEN }}"
0 commit comments