Skip to content

2026 REDESIGN* LETS GOOOOOO #1

2026 REDESIGN* LETS GOOOOOO

2026 REDESIGN* LETS GOOOOOO #1

Workflow file for this run

name: Deploy PR Preview to Pages
on:
pull_request:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages-pr-${{ github.event.pull_request.number || 'manual' }}"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
with:
branch: pr-${{ github.event.pull_request.number || 'preview' }}