Skip to content

Commit

Permalink
init pages on parent repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ankudinov committed Sep 11, 2024
1 parent 85a1c6c commit f0a8694
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/publish-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
name: marp-and-mkdocs-to-pages
concurrency: marp-and-mkdocs-to-pages
on:
push:
branches: [ main ]
paths:
- slides/**
- docs/**
- mkdocs.yml
- img/**
- .github/workflows/publish-pages.yml
# also trigger if lab archives changed
- demos/**
- .devcontainer/**
workflow_dispatch:
branches: [main]
permissions:
contents: write
pages: write
id-token: write
jobs:
build:
if: github.repository == 'aristanetworks/aclabs'
runs-on: ubuntu-22.04
steps:

- name: Checkout code ✅
uses: actions/checkout@v4

- name: Setup Python3 🐍
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Build MkDocs Site
run: |
pip install mkdocs-material
pip install mkdocs-macros-plugin
pip install mdx_truly_sane_lists
mkdocs build
- name: Setup Pages 📖
uses: actions/configure-pages@v5

- name: Upload artifact 🔼
uses: actions/upload-pages-artifact@v3
with:
path: ./site/

- name: Deploy to GitHub Pages 🚀
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit f0a8694

Please sign in to comment.