Skip to content

Commit

Permalink
Rebuild images once a month
Browse files Browse the repository at this point in the history
Additionally to manually triggering the pipeline to rebuild all images,
we can also do it once a month to get the latest packages. This is
especially beneficial on a rolling release distribution as Arch Linux.
  • Loading branch information
zappolowski committed May 1, 2024
1 parent 2249747 commit 37cde29
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
name: Build dunst CI images

# Run only when merged onto master
# Run only when merged onto master or once a month in order to get latest
# packages for each distribution.
on:
schedule:
cron: "42 3 15 * *"
push:
branches: [ 'master' ]
workflow_dispatch:
Expand Down

0 comments on commit 37cde29

Please sign in to comment.