Skip to content

Typo in roll notation example (Keep) #112

Typo in roll notation example (Keep)

Typo in roll notation example (Keep) #112

name: deploy-to-github-pages
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
deploy:
env:
BASE_PATH: ${{ github.event.repository.name }}
DIST_FOLDER: docs/.vuepress/dist
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Build
run: |
npm install
BASE_PATH=${{ env.BASE_PATH }} npm run docs:build
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ${{ env.DIST_FOLDER }}
single-commit: true