And the README.md file..... #13
This file contains hidden or 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: | |
| push: | |
| branches: [main, master] | |
| release: | |
| types: [published] | |
| workflow_dispatch: {} | |
| name: demo-website | |
| jobs: | |
| demo-page: | |
| runs-on: ubuntu-latest | |
| # Only restrict concurrency for non-PR jobs | |
| concurrency: | |
| group: quarto-publish-${{ github.event_name != 'pull_request' || github.run_id }} | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: "Check out repository" | |
| uses: actions/checkout@v4 | |
| # To render using knitr, we need a few more setup steps... | |
| # If we didn't want the examples to use `engine: knitr`, we could | |
| # skip a few of the setup steps. | |
| - name: "Setup R" | |
| uses: r-lib/actions/setup-r@v2 | |
| - name: "Setup R dependencies for Quarto's knitr engine" | |
| uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| packages: | |
| any::knitr | |
| any::rmarkdown | |
| any::downlit | |
| any::xml2 | |
| any::reticulate | |
| # Setup Python for reticulate | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| # Install python dependencies for reticulate | |
| - name: Setup r-reticulate venv | |
| shell: Rscript {0} | |
| run: | | |
| path_to_python <- reticulate::virtualenv_create( | |
| envname = "r-reticulate", | |
| python = Sys.which("python"), | |
| requirements = "docs/requirements.txt" | |
| ) | |
| writeLines(sprintf("RETICULATE_PYTHON=%s", path_to_python), | |
| Sys.getenv("GITHUB_ENV")) | |
| - name: "Set up Quarto" | |
| uses: quarto-dev/quarto-actions/setup@v2 | |
| with: | |
| version: "pre-release" | |
| - name: Publish to GitHub Pages (and render) | |
| uses: quarto-dev/quarto-actions/publish@v2 | |
| with: | |
| target: gh-pages | |
| path: docs |