Skip to content

Commit

Permalink
Enable scheduled nightly container rebuilds
Browse files Browse the repository at this point in the history
  • Loading branch information
sharpenedblade committed Sep 19, 2024
1 parent 92bd925 commit 54eec67
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/fedora-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ jobs:
uses: ./.github/workflows/build-image.yml
with:
image_name: "fedora-ci"
tags: unstable ${{ github.sha }}
tags: unstable
branch: main
20 changes: 20 additions & 0 deletions .github/workflows/nightly-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Update all images
on:
schedule:
# Every day at 2:49 AM
- cron: "49 2 * * *"

jobs:
fedora-ci-40:
uses: ./.github/workflows/build-image.yml
with:
image_name: "fedora-ci"
tags: "40"
branch: f40

fedora-ci-unstable:
uses: ./.github/workflows/build-image.yml
with:
image_name: "fedora-ci"
tags: unstable
branch: main

0 comments on commit 54eec67

Please sign in to comment.