Skip to content

Trying again, this time, for it to successfully display on github pages #39

Trying again, this time, for it to successfully display on github pages

Trying again, this time, for it to successfully display on github pages #39

Workflow file for this run

name: Deploy to GitHub Pages
on:
pull_request:
branches: ["main"]
push:
branches: ["main"]
permissions:
contents: read
pages: write
id-token: write
jobs:
build_site:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
cache-dependency-path: "./front_end/pnpm-lock.yaml"
- name: Install dependencies
working-directory: ./front_end
run: pnpm install
- name: build
working-directory: ./front_end
env:
BASE_PATH: "/${{ github.event.repository.name }}"
run: |
pnpm run build
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v3
with:
# Update the path to point to the build directory inside front_end
path: "front_end/build/"
deploy:
needs: build_site
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v4