summaryrefslogtreecommitdiffstats
path: root/.github/workflows/deploy.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/deploy.yml')
-rw-r--r--.github/workflows/deploy.yml11
1 files changed, 2 insertions, 9 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 7e3c2ae..420afd2 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -39,15 +39,6 @@ jobs:
- name: Setup | Checkout
uses: actions/checkout@v2
- # Cache files between builds
- - name: Setup | Cache Cargo
- uses: actions/cache@v2
- with:
- path: |
- ~/.cargo/registry
- ~/.cargo/git
- key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
-
- name: Setup | Rust
uses: actions-rs/toolchain@v1
with:
@@ -56,6 +47,8 @@ jobs:
profile: minimal
target: ${{ matrix.target }}
+ - uses: Swatinem/rust-cache@v1
+
- name: Setup | musl tools
if: matrix.target == 'x86_64-unknown-linux-musl'
run: sudo apt install -y musl-tools