Skip to content

Add logo to navbar

Add logo to navbar #11

name: "Build and deploy to GitHub Pages"
on:
push:
branches: ["main"]
workflow_dispatch:
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- uses: "prefix-dev/[email protected]"
- run: "pixi run render"
- name: "Upload site artifact"
uses: "actions/upload-pages-artifact@v3"
with:
path: "./_site"
deploy:
runs-on: "ubuntu-latest"
needs: "build"
environment:
name: "github-pages"
url: "${{ steps.deployment.outputs.page_url }}"
permissions:
pages: "write"
id-token: "write"
steps:
- name: "Deploy to GitHub Pages"
id: "deployment"
uses: "actions/deploy-pages@v4"