From 889d54709ccd74bf254710892ea6bcb0ce1d6965 Mon Sep 17 00:00:00 2001 From: Lukas Klic Date: Mon, 19 Feb 2024 12:40:21 +0100 Subject: [PATCH] update CI --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8064ba..2c968f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,3 +1,30 @@ +name: Deploy MkDocs Site + +on: + push: + branches: + - master + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Set up Python + uses: actions/setup-python@v3 + with: + python-version: '3.9' + + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install mkdocs-material + + - name: Build the MkDocs Site + run: mkdocs build + - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v3 with: