Added path ~/.cache/go-build to Golang cache example

This commit is contained in:
Peter Mescalchin 2021-05-04 16:24:29 +10:00
parent cdff11b11f
commit c8718e9e2f

View file

@ -116,7 +116,9 @@ steps:
```yaml
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-