Skip to content

Deploy

Deploy #39

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
pull_request:
branches: [main, master]
schedule:
- cron: 30 17 * * *
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- run: npm install --frozen-lockfile
- name: Build
run: npm run build
# - name: Deploy
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: docs/.vitepress/dist
# cname: example.com # if wanna deploy to custom domain
- name: Deploy GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: pages
FOLDER: dist