We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6517ab commit 2cc6690Copy full SHA for 2cc6690
1 file changed
.github/workflows/main.yaml
@@ -8,6 +8,8 @@ on:
8
- 'src/dockerfiles/**'
9
branches:
10
- main
11
+ schedule:
12
+ - cron: '30 10 * * 1'
13
push:
14
paths:
15
- '.github/**'
@@ -76,7 +78,7 @@ jobs:
76
78
context: ./src/dockerfiles/${{ matrix.image }}
77
79
file: ./src/dockerfiles/${{ matrix.image }}/Dockerfile
80
platforms: ${{ matrix.platform }}
- push: ${{ github.event_name != 'pull_request' }}
81
+ push: ${{ ! github.event_name == 'pull_request' }}
82
tags: ${{ steps.meta.outputs.tags }}
83
labels: ${{ steps.meta.outputs.labels }}
84
cache-from: type=gha
0 commit comments