Skip to content

beam-migrate: CREATE INDEX support #49

beam-migrate: CREATE INDEX support

beam-migrate: CREATE INDEX support #49

Workflow file for this run

name: Build Docs
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build docs
run: nix build .#docs -L
- name: Upload docs artifact
uses: actions/upload-artifact@v4
with:
name: beam-docs
path: result/
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: result
clean: true