Skip to content

Switch SQLite to WAL mode and increase busy_timeout to 30s #90

Switch SQLite to WAL mode and increase busy_timeout to 30s

Switch SQLite to WAL mode and increase busy_timeout to 30s #90

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
paths: ['docs/**', '.github/workflows/deploy-docs.yml']
workflow_dispatch:
permissions:
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Install docs dependencies
run: cd docs && npm ci
- name: Build docs
run: cd docs && npm run build
- uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4