mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
chore(ci): fix an issue in docker build cache (#262)
This commit is contained in:
parent
67b74ce055
commit
037640eccd
1 changed files with 2 additions and 3 deletions
5
.github/workflows/docker.yml
vendored
5
.github/workflows/docker.yml
vendored
|
|
@ -42,9 +42,8 @@ jobs:
|
|||
- name: Cache Go build
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
enableCrossOsArchive: true
|
||||
path: |
|
||||
go-build-platforms
|
||||
${{ runner.os }}-go_build-platforms
|
||||
key: ${{ runner.os }}-go_build-platforms
|
||||
restore-keys: |
|
||||
${{ runner.os }}-go_build-platforms
|
||||
|
|
@ -54,7 +53,7 @@ jobs:
|
|||
with:
|
||||
cache-map: |
|
||||
{
|
||||
"go-build-platforms": "/root/.cache/go-build"
|
||||
"${{ runner.os }}-go_build-platforms": "/root/.cache/go-build"
|
||||
}
|
||||
skip-extraction: ${{ steps.cache.outputs.cache-hit }}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue