From ee5076ca44b78f372385f4c49026eac146b3c478 Mon Sep 17 00:00:00 2001 From: Thomas Irgang Date: Sun, 30 Oct 2022 08:30:15 +0100 Subject: [PATCH] =?UTF-8?q?Action=20f=C3=BCr=20mkdocs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..b01499a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: ci +on: + push: + branches: + - main +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.x + - run: pip install mkdocs-material + - run: mkdocs gh-deploy --force