From d8fdafa13b5270f25b49a45e6c132342cd760a74 Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Thu, 27 Oct 2022 19:46:29 -0700 Subject: [PATCH] Remove support for publishing to gh-pages (docs.rs exists now) --- .github/workflows/main.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8dcd484..bbacbc2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,24 +26,6 @@ jobs: run: rustup update stable && rustup default stable && rustup component add rustfmt - run: cargo fmt -- --check - publish_docs: - name: Publish Documentation - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - - name: Install Rust - run: rustup update stable && rustup default stable - - name: Build documentation - run: cargo doc --no-deps --all-features - - name: Publish documentation - run: | - cd target/doc - git init - git add . - git -c user.name='ci' -c user.email='ci' commit -m init - git push -f -q https://git:${{ secrets.github_token }}@github.com/${{ github.repository }} HEAD:gh-pages - if: github.event_name == 'push' && github.event.ref == 'refs/heads/master' - cross_compile_test: name: Test Cross Compile - ${{ matrix.platform.target }} needs: [ test ]