diff options
| author | selsta <selsta@sent.at> | 2021-05-13 20:02:48 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-05-13 22:05:44 +0200 |
| commit | afb88ff511dfb9e545935aecdca37cf732bfb724 (patch) | |
| tree | edbc77a23db74c63c930457e42775471bb4c9af7 /.github/workflows | |
| parent | 937cb9825672d07a1917d2d9daf823802ec31d1b (diff) | |
| download | monzero-gui-afb88ff511dfb9e545935aecdca37cf732bfb724.tar.gz monzero-gui-afb88ff511dfb9e545935aecdca37cf732bfb724.tar.xz monzero-gui-afb88ff511dfb9e545935aecdca37cf732bfb724.zip | |
workflows: don't use cache on release tag
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fbbeaed8..6d32f579 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -96,6 +96,7 @@ jobs: with: submodules: recursive - uses: satackey/action-docker-layer-caching@v0.0.10 + if: "!startsWith(github.ref, 'refs/tags/v')" continue-on-error: true with: key: docker-linux-static-{hash} @@ -125,6 +126,7 @@ jobs: with: submodules: recursive - uses: satackey/action-docker-layer-caching@v0.0.10 + if: "!startsWith(github.ref, 'refs/tags/v')" continue-on-error: true with: key: docker-windows-static-{hash} |
