From 13629cd186ea236835e5a019d30e7d9c94c79b67 Mon Sep 17 00:00:00 2001 From: Real-MullaC Date: Thu, 25 Jul 2024 22:57:54 +0100 Subject: [PATCH] Create github-pages.yml --- .github/workflows/github-pages.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/github-pages.yml diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml new file mode 100644 index 00000000..486d1ed9 --- /dev/null +++ b/.github/workflows/github-pages.yml @@ -0,0 +1,22 @@ +name: GitHub Pages Deploy +on: + release: + types: [published, prereleased] + workflow_dispatch: +permissions: + contents: write +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - uses: actions/cache@v4 + with: + key: ${{ github.ref }} + path: .cache + - run: pip install mkdocs-material + - run: pip install pillow cairosvg + - run: mkdocs gh-deploy --force