From e4a881a4a6ebe00efcef36833c679b1281661812 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Sun, 22 May 2022 01:59:52 +0000 Subject: [PATCH] remove usage-docs from workflows --- .github/workflows/checks.yml | 20 -------------------- .github/workflows/publish-docs.yml | 20 -------------------- 2 files changed, 40 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 1e45f0828..a82f2824b 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -59,26 +59,6 @@ jobs: # if this changes, change it in cli/Cargo.toml and .github/workflows/publish-docs.yml as well mdbook-version: '0.4.10' - - name: Cache cargo registry - uses: actions/cache@v2 - with: - path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - - - name: Cache cargo build - uses: actions/cache@v2 - with: - path: target - key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - - name: Create usage-docs plugin - run: cargo build -p taskchampion-cli --features usage-docs --bin usage-docs - - run: mdbook test rust/docs - run: mdbook build rust/docs diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 3362bdb57..d18ec7705 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -18,26 +18,6 @@ jobs: # if this changes, change it in cli/Cargo.toml and .github/workflows/publish-docs.yml as well mdbook-version: '0.4.10' - - name: Cache cargo registry - uses: actions/cache@v2 - with: - path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - - - name: Cache cargo build - uses: actions/cache@v2 - with: - path: target - key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} - - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - - name: Create usage-docs plugin - run: cargo build -p taskchampion-cli --features usage-docs --bin usage-docs - - run: mdbook build docs - name: Deploy