Skip to content

build(deps): bump mermaid from 11.6.0 to 11.10.0 (#68) #57

build(deps): bump mermaid from 11.6.0 to 11.10.0 (#68)

build(deps): bump mermaid from 11.6.0 to 11.10.0 (#68) #57

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build-and-deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install
uses: ./.github/actions/install
- name: Build website
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4