Skip to content

add focal point, fragments #21

add focal point, fragments

add focal point, fragments #21

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install packages
run: yarn install
- name: Build app
run: yarn build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
keep_files: false
publish_branch: gh-pages
publish_dir: dist
github_token: ${{ secrets.GITHUB_TOKEN }}