try another publish.yml #23
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
# Workflow for rendering and deploying quarto site to GitHub Pages | |
# Based on the GitHub example static content deploy action | |
name: π Deploy Quarto site to Pages | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: ["doc-ju"] | |
jobs: | |
# Single deploy job since we're just deploying | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Check out repository | |
uses: actions/checkout@v4 | |
- name: π Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: π Deploy to GitHub Pages | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
path: 'Workflow4Metabolomics\ Galaxy\ Documentation/docs' | |
target: gh-pages | |