mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-22 19:49:34 +00:00
no cache on tag
This commit is contained in:
parent
f0d2438e8c
commit
e336bd0f7e
1 changed files with 3 additions and 0 deletions
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
|
@ -109,6 +109,7 @@ jobs:
|
|||
run: echo "hash=$(sha256sum Dockerfile.linux | awk '{ print $1 }')" >> $GITHUB_OUTPUT
|
||||
- uses: actions/cache@v4
|
||||
id: docker_cache
|
||||
if: "!startsWith(github.ref, 'refs/tags/v')"
|
||||
with:
|
||||
path: /tmp/linux-docker-image
|
||||
key: linux-docker-${{ steps.dockerfile_linux_hash.outputs.hash }}
|
||||
|
@ -154,6 +155,7 @@ jobs:
|
|||
run: echo "hash=$(sha256sum Dockerfile.windows | awk '{ print $1 }')" >> $GITHUB_OUTPUT
|
||||
- uses: actions/cache@v4
|
||||
id: docker_cache
|
||||
if: "!startsWith(github.ref, 'refs/tags/v')"
|
||||
with:
|
||||
path: /tmp/windows-docker-image
|
||||
key: windows-docker-${{ steps.dockerfile_windows_hash.outputs.hash }}
|
||||
|
@ -197,6 +199,7 @@ jobs:
|
|||
run: echo "hash=$(sha256sum Dockerfile.android | awk '{ print $1 }')" >> $GITHUB_OUTPUT
|
||||
- uses: actions/cache@v4
|
||||
id: docker_cache
|
||||
if: "!startsWith(github.ref, 'refs/tags/v')"
|
||||
with:
|
||||
path: /tmp/android-docker-image
|
||||
key: android-docker-${{ steps.dockerfile_android_hash.outputs.hash }}
|
||||
|
|
Loading…
Reference in a new issue