Skip to content

Merge branch 'main' of https://github.com/IntelligentSystemsLaborator… #4

Merge branch 'main' of https://github.com/IntelligentSystemsLaborator…

Merge branch 'main' of https://github.com/IntelligentSystemsLaborator… #4

on:
push:
branches: main

Check failure on line 4 in .github/workflows/quarto-publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/quarto-publish.yml

Invalid workflow file

You have an error in your yaml syntax on line 4
name: Render and Publish
# you need these permissions to publish to GitHub pages
permissions:
contents: write
pages: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Publish to GitHub Pages (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this secret is always available for github actions