Skip to content

Remove redundant heading #46

Remove redundant heading

Remove redundant heading #46

Workflow file for this run

on:
workflow_dispatch:
push:
branches: main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
name: Quarto Publish
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install environment from env.yaml
uses: mamba-org/setup-micromamba@v1
with:
environment-file: env.yaml
cache-environment: true
- name: Setup Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Render using Quarto
run: micromamba run -n coco-web quarto render
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./_site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4