Skip to content

try another publish.yml #18

try another publish.yml

try another publish.yml #18

Workflow file for this run

# 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
quarto:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: πŸ“‚ Check out repository
uses: actions/checkout@v4
- name: 🚚 Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Render Website
run: quarto render
with:

Check failure on line 40 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / πŸš€ Deploy Quarto site to Pages

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 40, Col: 9): Unexpected value 'with'
path: 'Workflow4Metabolomics\ Galaxy\ Documentation/docs'
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'Workflow4Metabolomics\ Galaxy\ Documentation/docs'
- name: πŸŽ‰ Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main
with:
path: 'Workflow4Metabolomics\ Galaxy\ Documentation/docs'