This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
Rework CI/CD to fix site builds #2
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 Check | |
on: | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
TITLE: OKD.io | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Python Setup | |
uses: actions/setup-python@v5 | |
- name: Install dependencies (Python) | |
run: pip install -r requirements.txt | |
- name: Install dependencies (Node) | |
run: npm ci | |
- name: Spellcheck | |
run: ./node_modules/.bin/cspell "docs/**/*.md" | |
- name: Build the site | |
run: mkdocs build --force --clean --verbose | |
- name: Check the site for broken links | |
run: linkchecker -f linkcheckerrc public | |
- name: Upload built site | |
uses: actions/upload-artifact@v4 | |
with: | |
name: okd.io | |
path: public/ | |
if-no-files-found: error |