Qarto publish #96
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
name: Qarto publish | |
on: | |
push: | |
branches: main | |
paths: 'docs/**' | |
pull_request: | |
branches: main | |
paths: 'docs/**' | |
schedule: | |
- cron: "0 0 * * 0" #runs at 00:00 UTC every Sunday | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.10.10 #install the python needed | |
- name: Install Python dependencies | |
uses: py-actions/py-dependency-install@v2 | |
with: | |
path: "requirements.txt" | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: Render and Publish | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
path: docs/ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |