mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-18 23:53:41 +02:00
no cache on tag
This commit is contained in:
parent
f0d2438e8c
commit
e336bd0f7e
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 New Issue
Block a user