mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Add CD
This commit is contained in:
parent
997a32707b
commit
a1dfd549a4
50
.github/workflows/docs_build.yml
vendored
50
.github/workflows/docs_build.yml
vendored
@ -5,7 +5,7 @@ on:
|
|||||||
inputs:
|
inputs:
|
||||||
schemas_artifact:
|
schemas_artifact:
|
||||||
description: "Name of the artifact that has updated schemas, set to `null` to not update"
|
description: "Name of the artifact that has updated schemas, set to `null` to not update"
|
||||||
default: 'null'
|
default: "null"
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
push:
|
push:
|
||||||
@ -14,10 +14,6 @@ on:
|
|||||||
- docs/**
|
- docs/**
|
||||||
- NewHorizons/Schemas/*
|
- NewHorizons/Schemas/*
|
||||||
|
|
||||||
env:
|
|
||||||
URL_PREFIX: '/'
|
|
||||||
PIPENV_VENV_IN_PROJECT: 1
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pages: write
|
pages: write
|
||||||
@ -29,59 +25,27 @@ concurrency:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build Docs
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
- run: mkdir ./.venv
|
|
||||||
|
|
||||||
- run: cp -r docs/** .
|
|
||||||
|
|
||||||
- name: Cache Dependencies
|
|
||||||
uses: actions/cache@v3
|
|
||||||
id: cache-dependencies
|
|
||||||
with:
|
|
||||||
path: ./.venv
|
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/Pipfile.lock') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pipenv
|
|
||||||
|
|
||||||
- name: Install dependecies
|
|
||||||
uses: VaultVulp/action-pipenv@v2.0.1
|
|
||||||
with:
|
|
||||||
command: install --dev
|
|
||||||
|
|
||||||
- name: Download Schemas
|
- name: Download Schemas
|
||||||
if: ${{ inputs.schemas_artifact != 'null' }}
|
if: ${{ inputs.schemas_artifact != 'null' }}
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: ${{ inputs.schemas_artifact }}
|
name: ${{ inputs.schemas_artifact }}
|
||||||
path: NewHorizons/Schemas
|
path: NewHorizons/Schemas
|
||||||
|
|
||||||
- name: Copy Schemas
|
|
||||||
run: cp -rf NewHorizons/Schemas content/pages/
|
|
||||||
|
|
||||||
- name: Build Site
|
- name: Build Site
|
||||||
uses: VaultVulp/action-pipenv@v2.0.1
|
uses: withastro/action@v0
|
||||||
with:
|
with:
|
||||||
command: run menagerie generate
|
path: ./docs
|
||||||
|
|
||||||
- name: Upload Artifact
|
|
||||||
if: success() && github.ref == 'refs/heads/main'
|
|
||||||
uses: actions/upload-pages-artifact@v1
|
|
||||||
with:
|
|
||||||
path: out/
|
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
|
needs: build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
environment:
|
environment:
|
||||||
name: github-pages
|
name: github-pages
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: Deploy Docs
|
|
||||||
needs: build
|
|
||||||
if: github.ref == 'refs/heads/main'
|
|
||||||
steps:
|
steps:
|
||||||
- name: Deploy to GitHub Pages
|
- name: Deploy to GitHub Pages
|
||||||
id: deployment
|
id: deployment
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user