diff options
author | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 21:26:50 -0400 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-06-08 21:26:50 -0400 |
commit | bab95eab79c8077e18daa1ef2e7ad9819cf94b25 (patch) | |
tree | 480e78ab85e9d92a718064a927d58c12c3feaaa3 | |
parent | 06c985ccdd886e847a838daeebed595e79972be5 (diff) |
Fix for multiple paths.
-rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81cb272..5fc8df1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,11 +14,11 @@ jobs: env: cache-name: cache-zephyr-modules with: - path: - - modules/ - - tools/ - - zephyr/ - - bootloader/ + path: | + modules/ + tools/ + zephyr/ + bootloader/ key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('app/west.yml') }} restore-keys: | ${{ runner.os }}-build-${{ env.cache-name }}- |