Skip to content

v3 note

v3 note #24

Workflow file for this run

name: Release Page
on:
push:
branches:
- v3
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install and Build
run: |
npm install
npm run build
echo 'wiki.sotap.org' > .vuepress/dist/CNAME
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
token: ${{ secrets.ACCESS_TOKEN }}
branch: v3-dist
folder: .vuepress/dist
single-commit: false