Skip to content

Merge remote-tracking branch 'origin/main' #21

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #21

Workflow file for this run

name: Deploy
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: npm install
run: npm install
- name: Build
run: npm run build
- name: Commit and Push
run: |
git add -N build/
if ! git diff --exit-code --quiet
then
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Update"
git push
fi
- name: Build Docs
run: npm run docs
- name: Docs Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs