Skip to content

Commit

Permalink
Disable cargo make and rust cache on custom runner
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-wh committed Oct 21, 2024
1 parent ea9d203 commit b1a7fd7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ jobs:
default: true
target: ${{ matrix.target }}
- uses: davidB/rust-cargo-make@v1
# This doesn't work on custom win runner, so we just skip it as it's installed already anyway
if: ${{ ! startsWith(matrix.os, 'win-sign') }}
- uses: Swatinem/rust-cache@v1
# Caching not needed on custom runner
if: ${{ ! startsWith(matrix.os, 'win-sign') }}
with:
sharedKey: ${{ matrix.target }}
- name: Run deploy script
Expand Down

0 comments on commit b1a7fd7

Please sign in to comment.