Skip to content

chore: fix github workflow to upload gh pages (#5) #2

chore: fix github workflow to upload gh pages (#5)

chore: fix github workflow to upload gh pages (#5) #2

Workflow file for this run

name: gh_deploy
on:
push:
branches:
- master
permissions:
contents: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# 👇 Build steps
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 24.x
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
# 👆 Build steps
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# 👇 Build output path
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4