From c04954362744a67d40b023a58a31cc31bdfa2a41 Mon Sep 17 00:00:00 2001 From: toast Date: Tue, 12 Mar 2024 13:14:43 +1100 Subject: [PATCH] Workflow test-4 --- .gitea/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 36ae489..ac9917d 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -26,6 +26,17 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_TOKEN }} + - name: Retrieve cache + uses: https://github.com/actions/cache@v4.0.1 + with: + path: | + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + target/ + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - name: Set up Docker Buildx uses: https://github.com/docker/setup-buildx-action@0d103c3126aa41d772a8362f6aa67afac040f80c # v3