From b7da9a34f39d89d8f309d95fa69eb6b7e31c791f Mon Sep 17 00:00:00 2001 From: Niklas Mohrin Date: Mon, 17 Aug 2026 20:04:40 +0200 Subject: [PATCH] Remove github pages workflow --- .github/workflows/gh-pages.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml deleted file mode 100644 index ae9ae93..0000000 --- a/.github/workflows/gh-pages.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: GitHub Pages -on: - push: - tags: - - "v[1-9]*" # push events matching `v` followed by anything larger than 0, e.g. v1.0, v20.15.10 - workflow_dispatch: - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v7 - - - name: Setup mdBook - uses: peaceiris/actions-mdbook@v2 - with: - mdbook-version: '0.4.4' - - - run: cd docs && mdbook build - - - name: Deploy - uses: peaceiris/actions-gh-pages@v4 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs/book