Skip to content

ci: add workflow to deploy to GitHub Pages #1

ci: add workflow to deploy to GitHub Pages

ci: add workflow to deploy to GitHub Pages #1

Workflow file for this run

on:
push:
branches: [master]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build app
run: |
yarn
yarn build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: dist