From 9db97d07301fd90942e3efe59b5737caa51cb1c3 Mon Sep 17 00:00:00 2001 From: Christian Mehlmauer Date: Mon, 2 Aug 2021 13:22:45 +0200 Subject: [PATCH] run daily --- .github/workflows/docker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 2faca9c8..fc5ee067 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -6,6 +6,8 @@ on: - master release: types: [published] + schedule: + - cron: '0 7 * * *' jobs: images: @@ -16,7 +18,7 @@ jobs: uses: actions/checkout@v2.3.4 - name: Set tag to latest - if: github.event_name == 'push' && github.ref == 'refs/heads/master' + if: (github.event_name == 'push' && github.ref == 'refs/heads/master') || github.event_name == 'schedule' run: | echo "DOCKER_TAG=latest" >> $GITHUB_ENV