* Add blog post template for quality improvement initiative (Refs #121) * Update YAML frontmatter for 2025-05-25-sequential-thinking-revolution.md (Refs #121) * Update YAML frontmatter for 2025-06-04-ki-fuer-einsteiger-live-erleben.md (Refs #121) * Corrected YAML frontmatter and flagged for translation for 2025-05-25-sequential-thinking-revolution.md (Refs #121) * Corrected YAML frontmatter and flagged for translation for 2025-06-04-ki-fuer-einsteiger-live-erleben.md (Refs #121) * Finalize 2025-05-25-sequential-thinking-revolution.md (Refs #121) * Finalize 2025-06-04-ki-fuer-einsteiger-live-erleben.md (Refs #121) * Translated 2025-05-25-sequential-thinking-revolution.md to German (Refs #121) * Fix: Exclude blog-post-template.md from MkDocs blog plugin (Refs #ISSUE_NUMBER) * Fix: Revert mkdocs.yml exclude and fix typo in redirects (Refs #ISSUE_NUMBER) * Move blog-post-template.md to docs/templates/blog (Refs #ISSUE_NUMBER) * Delete docs/blog/posts/blog-post-template.md Signed-off-by: Michael Wegener <mw@satware.com> * Fix: Correctly decode and update blog-post-template.md (Refs #ISSUE_NUMBER) * Fix: Correct typo in mkdocs.yml redirect_maps (Refs #ISSUE_NUMBER) * Fix: Add fetch-depth: 0 to checkout action in deploy-preview.yml (Refs #ISSUE_NUMBER) * Fix: Add fetch-depth: 0 to checkout action in deploy-live.yml (Refs #ISSUE_NUMBER) --------- Signed-off-by: Michael Wegener <mw@satware.com> Co-authored-by: Jane Alesi <ja@satware.ai>
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
name: GitHub Pages
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main-mkdocs
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-22.04
|
|
# Add condition to ensure this only runs on the main repository
|
|
if: github.repository == 'satwareAG/satware.ai'
|
|
permissions:
|
|
contents: write
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # Added this line for full git history
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.13'
|
|
|
|
- name: Install MkDocs and plugins
|
|
run: |
|
|
pip install --upgrade pip
|
|
pip install \
|
|
cairosvg \
|
|
libsass \
|
|
mkdocs-exclude \
|
|
mkdocs-git-revision-date-localized-plugin \
|
|
mkdocs-glightbox \
|
|
mkdocs-include-markdown-plugin \
|
|
mkdocs-literate-nav \
|
|
mkdocs-macros-plugin \
|
|
mkdocs-material==9.6.14 \
|
|
"mkdocs-material[imaging]" \
|
|
mkdocs-minify-plugin \
|
|
mkdocs-redirects \
|
|
mkdocs-rss-plugin \
|
|
mkdocs-snippets \
|
|
mkdocs-video \
|
|
watchdog
|
|
|
|
- name: Build css
|
|
run: |
|
|
mkdir -p docs/assets/css
|
|
pysassc overrides/assets/css/custom.scss docs/assets/css/custom.css
|
|
|
|
- name: Build static site
|
|
run: mkdocs build
|
|
|
|
- name: Deploy
|
|
run: mkdocs gh-deploy --force |