Skip to content

fix(docs): Fix base url #16

fix(docs): Fix base url

fix(docs): Fix base url #16

Workflow file for this run

on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: ✅ Checkout repository
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: 🛠️ Generate documentation
run: ./build.sh docs
- name: 💾 Upload website dist to artifact storage
uses: actions/upload-artifact@v4
with:
name: github-pages
path: artifacts/docs/github-pages.tar
deploy:
runs-on: ubuntu-22.04
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: 🚚 Deploy documentation website
uses: actions/deploy-pages@v4
id: deployment