Skip to content

Update redirects.ts (#96) #62

Update redirects.ts (#96)

Update redirects.ts (#96) #62

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- "production"
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Enable CorePack
run: corepack enable
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
check-latest: true
- name: Install dependencies
run: pnpm install
- name: Build using pnpm
run: pnpm run build
env:
NITRO_PRESET: github_pages
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./.output/public
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github_pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4