Skip to content

Commit

Permalink
github: Fix bad step name in cache key check
Browse files Browse the repository at this point in the history
  • Loading branch information
devanlai committed Jul 15, 2023
1 parent b11c984 commit bfd8701
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-firmware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,14 @@ jobs:
env:
cache-name: cache-toolchain
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/toolchains/
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('util/install-toolchain.sh') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- if: ${{ steps.cache-npm.outputs.cache-hit != 'true' }}
- if: ${{ steps.cache-toolchain.outputs.cache-hit != 'true' }}
name: Download toolchain
run: ./util/install-toolchain.sh

Expand Down

0 comments on commit bfd8701

Please sign in to comment.