Skip to content

fix bug on marina api doc (#21) #8

fix bug on marina api doc (#21)

fix bug on marina api doc (#21) #8

Workflow file for this run

name: Github Pages for Website
on:
workflow_dispatch:
push:
branches: [master]
jobs:
website:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: yarn install --frozen-lockfile
- run: yarn build
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}