diff --git a/.github/workflows/docdeploy.yml b/.github/workflows/docdeploy.yml deleted file mode 100644 index f8e466ac..00000000 --- a/.github/workflows/docdeploy.yml +++ /dev/null @@ -1,22 +0,0 @@ -on: - push: - branches: - - main - -name: Deploy Documentation - -jobs: - deploy-docs: - name: Deploy Documentation - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions-rust-lang/setup-rust-toolchain@v1 - with: - toolchain: stable - - run: (test -x $HOME/.cargo/bin/mdbook || cargo install mdbook) - - run: mdbook build docs - - uses: JamesIves/github-pages-deploy-action@4.1.7 - with: - branch: gh-pages # The branch the action should deploy to. - folder: docs/book # The folder the action should deploy.