Skip to content

chore: markdown auto-formatting #75

chore: markdown auto-formatting

chore: markdown auto-formatting #75

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
paths:
- 'docs/**'
jobs:
build-and-deploy:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build VuePress site
run: npm i && npm run docs:build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: pages
build_dir: docs/.vuepress/dist
fqdn: oca.colossi.network
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}