chatgpt-web/.github/workflows/pages.yml

32 lines
670 B
YAML
Raw Normal View History

2023-03-03 03:16:46 +09:00
name: GitHub build pages
on:
push:
branches:
- main
jobs:
deploy:
name: Build and deploy GH pages
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Build
2023-03-20 21:50:35 +09:00
run: npm ci && npm run lint && npm run build:github
2023-03-03 03:16:46 +09:00
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist