We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e6b83a commit 7329d85Copy full SHA for 7329d85
.github/workflows/docker-image-dev.yml
@@ -2,7 +2,7 @@ name: Docker Image CI for dev
2
3
on:
4
schedule:
5
- - cron: '35 2 * * *'
+ - cron: '35 2 * * 0' # Runs every Sunday at 2:35 AM
6
push:
7
branches: [ dev ]
8
@@ -42,9 +42,9 @@ jobs:
42
uses: actions/cache@v4
43
with:
44
path: /tmp/.buildx-cache
45
- key: ${{ runner.os }}-buildx-${{ github.sha }}-${{ matrix.platform }}
+ key: ${{ runner.os }}-buildx-${{ github.sha }}-${{ matrix.platform }}-${{ github.run_id }}
46
restore-keys: |
47
- ${{ runner.os }}-buildx-${{ matrix.platform }}
+ ${{ runner.os }}-buildx-${{ matrix.platform }}-
48
49
- name: Login to Docker Hub
50
if: github.event_name != 'pull_request'
0 commit comments