Merge pull request #35 from ankudinov/init_pages #1
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: marp-and-mkdocs-to-pages | |
concurrency: marp-and-mkdocs-to-pages | |
on: | |
push: | |
branches: [ '**' ] | |
paths: | |
- slides/** | |
- docs/** | |
- mkdocs.yml | |
- img/** | |
- .github/workflows/publish-pages-on-forks.yml | |
# also trigger if lab archives changed | |
- demos/** | |
- .devcontainer/** | |
workflow_dispatch: | |
branches: [ '**' ] | |
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: find-branch | |
id: find_branch | |
run: | | |
echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
- 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 |