mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
Bump go cache (#1919)
This commit is contained in:
parent
96fce90cc3
commit
bf59028bcd
1 changed files with 3 additions and 2 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
|
@ -47,10 +47,11 @@ jobs:
|
||||||
- name: Cache go build
|
- name: Cache go build
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
env:
|
env:
|
||||||
cache-name: cache-go-cache
|
# increment the number suffix to bump the cache
|
||||||
|
cache-name: cache-go-cache-1
|
||||||
with:
|
with:
|
||||||
path: .go-cache
|
path: .go-cache
|
||||||
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/go.sum') }}
|
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('go.mod', '**/go.sum') }}
|
||||||
|
|
||||||
- name: Start build container
|
- name: Start build container
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue