mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-15 08:23:46 +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
|
- name: Cache Go build
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
enableCrossOsArchive: true
|
|
||||||
path: |
|
path: |
|
||||||
go-build-platforms
|
${{ runner.os }}-go_build-platforms
|
||||||
key: ${{ runner.os }}-go_build-platforms
|
key: ${{ runner.os }}-go_build-platforms
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-go_build-platforms
|
${{ runner.os }}-go_build-platforms
|
||||||
|
|
@ -54,7 +53,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
cache-map: |
|
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 }}
|
skip-extraction: ${{ steps.cache.outputs.cache-hit }}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue