Skip to content

fix(ui): improve wording and manual #2

fix(ui): improve wording and manual

fix(ui): improve wording and manual #2

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn build
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
name: github-pages
deploy:
needs: build
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4