Skip to content

create festures-*.md files #157

create festures-*.md files

create festures-*.md files #157

Workflow file for this run

name: "GitHub Pages"
on:
workflow_dispatch:
push:
branches:
- "main"
- "docs"
paths:
- 'docs/**'
- '.github/workflows/gh-pages.yml'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
mkdocs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: 3.11
architecture: x64
cache: 'pip'
- name: "Run pip install"
run: >
python3 -m pip install -r requirements.txt
- name: "Run MkDocs(build)"
run: >
python3 -m mkdocs build --site-dir _site
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
path: '_site'
- uses: actions/[email protected]
mkdocs_test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: 3.11
architecture: x64
cache: 'pip'
- name: "Run pip install"
run: >
python3 -m pip install -r requirements.txt
- name: "Run MkDocs(build)"
run: >
python3 -m mkdocs build --site-dir _site