File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 1
1
name : Build and push multi-arch Docker image
2
2
3
3
on :
4
+ schedule :
5
+ - cron : ' 0 9 * * FRI'
4
6
release :
5
7
types : [published]
6
8
16
18
steps :
17
19
- name : Checkout
18
20
uses : actions/checkout@v1
21
+ with :
22
+ fetch-depth : 0
23
+
24
+ - name : Checkout release to build
25
+ run : |
26
+ if [[ $GITHUB_EVENT_NAME == schedule ]]; then
27
+ # Use the latest stable version
28
+ git checkout "$(git tag -l | grep -E "^[0-9]*\.[0-9]*\.[0-9]*$" | tail -n 1)"
29
+ fi
19
30
20
31
- name : Docker login
21
32
env :
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Unreleased
4
+ - Rebuild latest stable release images on a weekly basis.
5
+
3
6
## 4.3.0 (2021-11-23)
4
7
- Bump [ ` thelounge ` ] [ 1 ] to [ ` 4.3.0 ` ] ( https://github.com/thelounge/thelounge/releases/tag/v4.3.0 ) .
5
8
- Upgrade Node.js base images from 12 to LTS.
You can’t perform that action at this time.
0 commit comments