Skip to content

refactor(symbol): trust LSP ranges directly — remove all augmentation… #14

refactor(symbol): trust LSP ranges directly — remove all augmentation…

refactor(symbol): trust LSP ranges directly — remove all augmentation… #14

Workflow file for this run

name: Manual
on:
push:
branches: [master]
paths: [docs/manual/**]
pull_request:
paths: [docs/manual/**]
workflow_dispatch:
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@mdbook
- run: mdbook build docs/manual
- uses: actions/upload-pages-artifact@v3
if: github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch'
with:
path: target/manual
deploy:
name: Deploy
if: github.ref == 'refs/heads/master' || github.event_name == 'workflow_dispatch'
needs: build
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
steps:
- id: deploy
uses: actions/deploy-pages@v4