Skip to content

Commit

Permalink
build but don't push on cron schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeing committed Dec 8, 2024
1 parent a7ad3bc commit df995d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
tags:
- 'v*'
schedule:
- cron: "0 8 * * 1" # every monday at 08:00 UTC
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -39,5 +41,5 @@ jobs:
context: .
file: ./environments/docker/Dockerfile
platforms: linux/amd64,linux/arm64
push: false
push: ${{ github.event_name != 'schedule' }}
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit df995d3

Please sign in to comment.