Skip to content

simple page

simple page #8

Workflow file for this run

name: Build Docs
on:
push:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
# This is the one we use for producing documentation
deploy:
runs-on: ubuntu-latest
permissions:
contents: 'read'
pages: write
id-token: 'write'
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
npm install
npm run build
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4