Skip to content
This repository was archived by the owner on Jun 19, 2026. It is now read-only.

Rename runtime Tracey concepts #81

Rename runtime Tracey concepts

Rename runtime Tracey concepts #81

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
paths:
- "docs/**"
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: bearcove-ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Install dodeca
run: |
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/bearcove/dodeca/releases/latest/download/dodeca-installer.sh | sh
- name: Build website
run: ~/.cargo/bin/ddc build
working-directory: docs
- name: Copy CNAME to output
run: cp CNAME docs/public/
- name: Setup Pages
uses: actions/configure-pages@v6
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
with:
path: docs/public
deploy:
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# GitHub Pages deployment is an OIDC-authenticated GitHub API operation.
# Keep the build on Bearcove; run only this deploy action on GitHub-hosted.
runs-on: ubuntu-24.04
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5