Skip to content

update: Fri Oct 25 04:52:08 PM CEST 2024 #53

update: Fri Oct 25 04:52:08 PM CEST 2024

update: Fri Oct 25 04:52:08 PM CEST 2024 #53

Workflow file for this run

name: Deploy App to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Build React app
run: pnpm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
cname: board-score-hub.philipp-bonin.com