Skip to content

Merge pull request #257 from privacy-scaling-explorations/fix/secret-… #292

Merge pull request #257 from privacy-scaling-explorations/fix/secret-…

Merge pull request #257 from privacy-scaling-explorations/fix/secret-… #292

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Build libraries
run: yarn build:libraries
- name: Generate doc website
run: yarn docs
- name: Publish on Github Pages
uses: crazy-max/[email protected]
with:
build_dir: docs
jekyll: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}