Skip to content

Commit 54eec67

Browse files
Enable scheduled nightly container rebuilds
1 parent 92bd925 commit 54eec67

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/fedora-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ jobs:
88
uses: ./.github/workflows/build-image.yml
99
with:
1010
image_name: "fedora-ci"
11-
tags: unstable ${{ github.sha }}
11+
tags: unstable
1212
branch: main

.github/workflows/nightly-update.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Update all images
2+
on:
3+
schedule:
4+
# Every day at 2:49 AM
5+
- cron: "49 2 * * *"
6+
7+
jobs:
8+
fedora-ci-40:
9+
uses: ./.github/workflows/build-image.yml
10+
with:
11+
image_name: "fedora-ci"
12+
tags: "40"
13+
branch: f40
14+
15+
fedora-ci-unstable:
16+
uses: ./.github/workflows/build-image.yml
17+
with:
18+
image_name: "fedora-ci"
19+
tags: unstable
20+
branch: main

0 commit comments

Comments
 (0)