Update details.md (#1026) #489
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |