Skip to content

holy moly

holy moly #10

Workflow file for this run

name: Deploy Astro site to Pages
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
env:
NODE_VERSION: 20
PNPM_VERSION: "10.14.0"
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Checkout git repo
uses: actions/checkout@v4
- name: Install, build, and upload site
uses: withastro/action@v3
with:
path: .
node-version: ${{ env.NODE_VERSION }} # local version is 24 *shrug*
package-manager: pnpm@${{ env.PNPM_VERSION }}
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4