mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
26 lines
548 B
YAML
Executable File
26 lines
548 B
YAML
Executable File
name: Deploy MkDocs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main # Change if your default branch is different
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.9'
|
|
|
|
- name: Install MkDocs
|
|
run: |
|
|
pip install mkdocs mkdocs-material && pip install mkdocs-github-admonitions-plugin
|
|
|
|
- name: Deploy MkDocs
|
|
run: mkdocs gh-deploy --force
|