re-add cache nonce

This commit is contained in:
Jaremy Creechley 2023-07-18 17:00:18 -07:00
parent 71269839f7
commit 3c211b69c3
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
1 changed files with 4 additions and 1 deletions

View File

@ -6,6 +6,9 @@ on:
pull_request:
workflow_dispatch:
env:
cache_nonce: 0 # Allows for easily busting actions/cache caches
jobs:
build:
timeout-minutes: 90
@ -92,7 +95,7 @@ jobs:
path: |
~/.nimble
${{ github.workspace }}/.nimble
key: ${{ matrix.builder }}-${{ matrix.target.cpu }}-dotnimble-${{ hashFiles('nimble.lock') }}
key: ${{ matrix.builder }}-${{ matrix.target.cpu }}-dotnimble-${{ hashFiles('nimble.lock') }}-${{ env.cache_nonce }}
- name: Setup Nimble
uses: "./.github/actions/install_nimble"