From 1a969da8eca0658b092e5acc7fa2f6788df9a68a Mon Sep 17 00:00:00 2001 From: Kevin Zhong Date: Wed, 9 Oct 2024 14:57:29 +0200 Subject: [PATCH] docs --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..e31907d --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: ci +on: + push: + branches: + - master + - main +permissions: + contents: write +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - uses: actions/cache@v2 + with: + key: ${{ github.ref }} + path: .cache + - run: pip install mkdocs-material + - run: pip install mkdocs-roamlinks-plugin + - run: pip install mkdocs-rss-plugin + # - run: pip install mkdocs-mermaid2-plugin + - run: mkdocs gh-deploy --force