2022-08-08 02:33:59 +00:00
|
|
|
name: Deploy to Github Pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deployment:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-10-29 19:49:49 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-08-08 02:33:59 +00:00
|
|
|
|
|
|
|
- name: Setup Node
|
2023-10-29 19:49:49 +00:00
|
|
|
uses: actions/setup-node@v4
|
2022-08-08 02:33:59 +00:00
|
|
|
with:
|
2024-04-07 22:08:03 +00:00
|
|
|
node-version: 20
|
2022-08-08 02:33:59 +00:00
|
|
|
cache: 'npm'
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2023-08-08 02:12:28 +00:00
|
|
|
npm ci
|
2022-08-08 02:33:59 +00:00
|
|
|
npm run build
|
|
|
|
|
|
|
|
- name: Deploy
|
2024-07-27 21:29:01 +00:00
|
|
|
uses: peaceiris/actions-gh-pages@v4
|
2022-08-08 02:33:59 +00:00
|
|
|
with:
|
2022-08-08 02:42:51 +00:00
|
|
|
deploy_key: ${{ secrets.DEPLOY_KEY }}
|
2024-03-13 02:44:43 +00:00
|
|
|
publish_dir: ./dist
|
2022-08-08 02:42:51 +00:00
|
|
|
force_orphan: true
|