Skip to content

feat: support issue links in hayagriva changelog #5

feat: support issue links in hayagriva changelog

feat: support issue links in hayagriva changelog #5

Workflow file for this run

name: Deploy
on:
push:
branches: ["main"]
workflow_dispatch:
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- uses: taiki-e/install-action@v2
with:
tool: just, mdbook
- uses: Swatinem/rust-cache@v2
with:
workspaces: typst-extra-docs
- name: Install mdbook-typst-highlight (fork)
run: |
cargo install --git https://github.com/sicikh/mdbook-typst-highlight --branch upgrade-mdbook-0.5.2
- name: Build the preprocessor
# This step is unnecessary, but helps debugging.
run: |
cargo build --release --manifest-path ./typst-extra-docs/Cargo.toml
- run: just build
- uses: actions/upload-pages-artifact@v3
with:
path: ./book
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
pages: write
id-token: write
steps:
- uses: actions/deploy-pages@v4
id: deployment