aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/pages.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pages.yml')
-rw-r--r--.github/workflows/pages.yml27
1 files changed, 0 insertions, 27 deletions
diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml
deleted file mode 100644
index eaf6a06..0000000
--- a/.github/workflows/pages.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-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
- - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- - uses: actions/cache@v3
- with:
- key: mkdocs-material-${{ env.cache_id }}
- path: .cache
- restore-keys: |
- mkdocs-material-
- - run: |
- cd docs
- pip install -r requirements.txt
- mkdocs gh-deploy --force