Skip to content

Restore original Orange design and UI structure #6

Restore original Orange design and UI structure

Restore original Orange design and UI structure #6

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: web/package-lock.json
- name: Install dependencies
run: |
cd web
npm ci --legacy-peer-deps
- name: Build
run: |
cd web
npm run build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: web/dist
branch: gh-pages
clean: true