toolkit for mdBook [mirror of my GitHub repo] docs.tonywu.dev/mdbookkit/
permalinks rust-analyzer mdbook
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update workflows

Tony Wu db758150 513453ca

+24 -9
+19 -4
.github/workflows/ci.yml
··· 122 122 - uses: dtolnay/rust-toolchain@master 123 123 with: 124 124 toolchain: stable 125 + components: rust-src # speeds up rust-analyzer indexing 126 + id: rustup 125 127 126 - - uses: actions/cache/restore@v4 128 + - uses: cargo-bins/cargo-binstall@v1.16.6 129 + 130 + - uses: tonywu6/cache-hit-please@v1.1.0 131 + id: cache 132 + env: 133 + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} 127 134 with: 128 - path: ${{needs.test.outputs.cache-path}} 129 - key: ${{ needs.test.outputs.cache-primary-key }} 130 - restore-keys: ${{ needs.test.outputs.cache-restore-key }} 135 + deps: | 136 + ${{runner.os}} 137 + ${{runner.arch}} 138 + ${{steps.rustup.outputs.cachekey}} 139 + ${{hashFiles('**/Cargo.toml')}} 140 + ${{hashFiles('**/Cargo.lock')}} 141 + ${{github.workflow}} 142 + ${{github.run_id}} 143 + path: | 144 + .bin/ 145 + target/ 131 146 132 147 - run: cargo run --package util-rust-analyzer -- download 133 148 env:
+5 -5
.github/workflows/docs.yml
··· 84 84 - run: cargo run -- postprocess 85 85 working-directory: docs 86 86 87 - # - uses: actions/upload-artifact@v4 88 - # with: 89 - # path: docs/dist 90 - # retention-days: 1 91 - # if-no-files-found: warn 87 + - uses: actions/upload-artifact@v4 88 + with: 89 + path: docs/dist 90 + retention-days: 1 91 + if-no-files-found: warn 92 92 93 93 - uses: cloudflare/wrangler-action@v3 94 94 name: wrangler versions upload