We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8e5ce3 commit 61d85ceCopy full SHA for 61d85ce
.github/workflows/docker-images.yml
@@ -54,7 +54,7 @@ jobs:
54
-
55
name: Cache Docker layers
56
uses: actions/cache@v4
57
- if: github.event_name == 'push'
+ if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
58
with:
59
path: /tmp/.buildx-cache
60
key: ${{ matrix.os }}-buildx-${{ matrix.image }}-${{ github.sha }}
@@ -74,7 +74,7 @@ jobs:
74
${{ matrix.os }}-buildx-${{ matrix.image }}-
75
76
77
- if: github.event_name != 'push' && github.event_name != 'pull_request'
+ if: github.event_name != 'push' && github.event_name != 'pull_request' && github.event_name != 'workflow_dispatch'
78
run: |
79
echo "I do not know how to setup cache"
80
exit -1
0 commit comments