2021-05-24 07:50:45 +00:00
|
|
|
name: gh-pages-deploy
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-08-14 14:51:36 +00:00
|
|
|
- main
|
2021-05-24 07:50:45 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-and-deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2.3.1
|
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
|
|
|
|
- name: Install and Build
|
|
|
|
run: |
|
|
|
|
npm install
|
|
|
|
npm run build
|
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: JamesIves/github-pages-deploy-action@4.1.3
|
|
|
|
with:
|
|
|
|
branch: gh-pages
|
2021-08-11 22:15:23 +00:00
|
|
|
folder: dist/web
|