Skip to content

Merge pull request #55 from Borisw123/dev.borisw.fedapay #17

Merge pull request #55 from Borisw123/dev.borisw.fedapay

Merge pull request #55 from Borisw123/dev.borisw.fedapay #17

Workflow file for this run

name: Deploy MKDocs to GitHub Page
on:
push:
branches:
- master
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force