mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
Former-commit-id: c922f816b01ee62f6433abafc41fc9ae7bae0250 [formerly 7f266afb2677394d78ede2d3b0076fd17a9c89f9] [formerly 433e95d90d85b48eed6d7bd2aef53570b612da64 [formerly 2cfe07da6e]]
Former-commit-id: cec6abb0661c00197771545686661b447d17de9c [formerly 886fbb5c204b0b58593f475557b96cf1ad0cc59c]
Former-commit-id: aaec9a909d9de1d64237dc2cb44de835e17b45b6
30 lines
524 B
YAML
30 lines
524 B
YAML
name: docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
gh-pages:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Use Node.js 16.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16.x
|
|
|
|
- run: yarn --frozen-lockfile
|
|
- run: yarn docs
|
|
|
|
- name: Github Pages
|
|
uses: crazy-max/ghaction-github-pages@v2.5.0
|
|
with:
|
|
build_dir: docs
|
|
jekyll: false
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|