mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
name: Build Docs
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
schemas_artifact:
|
|
description: "Name of the artifact that has updated schemas, set to `null` to not update"
|
|
default: "null"
|
|
required: false
|
|
type: string
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- docs/**
|
|
- NewHorizons/Schemas/*
|
|
- .github/workflows/docs_build.yml
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
concurrency:
|
|
group: "pages"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Download Schemas
|
|
if: ${{ inputs.schemas_artifact != 'null' }}
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: ${{ inputs.schemas_artifact }}
|
|
path: NewHorizons/Schemas
|
|
- name: Move Stuff Becuase PNPM Can't FUCKING INSTALL IF YOU DONT HAVE PACKAGE JSON IN THE ROOT
|
|
run: |
|
|
cp docs/package.json .
|
|
cp docs/pnpm-lock.yaml .
|
|
- name: Build Site
|
|
uses: withastro/action@v2
|
|
with:
|
|
path: ./docs
|
|
package-manager: pnpm@latest
|
|
|
|
deploy:
|
|
needs: build
|
|
runs-on: ubuntu-latest
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
steps:
|
|
- name: Deploy to GitHub Pages
|
|
id: deployment
|
|
uses: actions/deploy-pages@v4
|