Skip to content

fixed loading bubble style #22

fixed loading bubble style

fixed loading bubble style #22

Workflow file for this run

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@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Build
run: npm ci && npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public