From bc4ae28c34dd71ed9cd2f100f75dac2fb2f237ef Mon Sep 17 00:00:00 2001 From: Ben White <37007079+bennjii@users.noreply.github.com> Date: Tue, 4 Oct 2022 17:43:04 +1300 Subject: [PATCH] Cache and Debug Release Candidates --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3d350b..5366bf9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,8 +59,18 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: + includeDebug: true tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version releaseName: "App v__VERSION__" releaseBody: "See the assets to download this version and install." releaseDraft: true prerelease: false + - uses: actions/cache@v3 + with: + path: | + ~/.cargo/bin/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ + target/ + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}