remnantchat/.github/workflows/deploy.yml

35 lines
635 B
YAML
Raw Normal View History

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:
- uses: actions/checkout@v4
2022-08-08 02:33:59 +00:00
- name: Setup Node
uses: actions/setup-node@v4
2022-08-08 02:33:59 +00:00
with:
node-version: 18
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
npm run analyze -- --html build/bundle-info.html
2022-08-08 02:33:59 +00:00
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
2022-08-08 02:33:59 +00:00
with:
deploy_key: ${{ secrets.DEPLOY_KEY }}
publish_dir: ./build
force_orphan: true