diff options
author | Adrian <[email protected]> | 2022-04-05 08:28:45 +0200 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2022-04-18 23:34:50 -0400 |
commit | 142d5187342e37b524b969f3e87b131478f1ac2b (patch) | |
tree | 07d79c74b841dced583f4235476ac804eab55ab7 /.github | |
parent | b7771fbdd299e9dbfa606c8c3b1551c5acd401e6 (diff) | |
download | zmk-142d5187342e37b524b969f3e87b131478f1ac2b.tar.gz zmk-142d5187342e37b524b969f3e87b131478f1ac2b.zip |
ci: make cache hash independent of input parameter
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-user-config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-user-config.yml b/.github/workflows/build-user-config.yml index 0f22bd99dc..226a53c125 100644 --- a/.github/workflows/build-user-config.yml +++ b/.github/workflows/build-user-config.yml @@ -80,7 +80,7 @@ jobs: zephyr/ bootloader/ zmk/ - key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('${{ inputs.config_path }}/west.yml') }} + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/west.yml', '**/build.yaml') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- ${{ runner.os }}-build- |