Skip to content

Commit 4559be0

Browse files
committed
Schedule automatic image updates
ChangeLog: * .github/workflows/build-base.yml: * .github/workflows/build-latest.yml: * README.md:
1 parent 08b4cd4 commit 4559be0

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/workflows/build-base.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ name: Build Base Image
66

77
on:
88
workflow_dispatch: # Allows manual trigger via GitHub UI
9+
schedule:
10+
- cron: '0 3 1 * *' # At 03:00 UTC every 1st day of the month
911

1012
permissions:
1113
contents: read

.github/workflows/build-latest.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ name: Build Latest Image
66

77
on:
88
workflow_dispatch: # Allows manual trigger via GitHub UI
9+
schedule:
10+
- cron: '0 4 * * 1' # At 04:00 UTC every Monday
911

1012
permissions:
1113
contents: read

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,9 @@ jobs:
7474
CXX: clang++-${{ matrix.version }}
7575
run: make check
7676
```
77+
78+
## Updates
79+
80+
The images are automatically updated once per month (base) / once per week
81+
(latest). There may also be manual updates whenever the feature set needs to
82+
change.

0 commit comments

Comments
 (0)