Skip to content

Update README.md

Update README.md #54

Workflow file for this run

name: Deploy Website
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
Deploy-Frontend:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client/
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
cache-dependency-path: "./client/package-lock.json"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Setup GitHub Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./client/dist"
- name: Deploy Frontend to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1