rebuild latest release images on a weekly basis (#135)

This commit is contained in:
William Boman 2022-02-14 21:32:18 +01:00 committed by GitHub
parent 31785401f6
commit 49107587fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -1,6 +1,8 @@
name: Build and push multi-arch Docker image
on:
schedule:
- cron: '0 9 * * FRI'
release:
types: [published]
@ -16,6 +18,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
with:
fetch-depth: 0
- name: Checkout release to build
run: |
if [[ $GITHUB_EVENT_NAME == schedule ]]; then
# Use the latest stable version
git checkout "$(git tag -l | grep -E "^[0-9]*\.[0-9]*\.[0-9]*$" | tail -n 1)"
fi
- name: Docker login
env:

View file

@ -1,5 +1,8 @@
# Changelog
## Unreleased
- Rebuild latest stable release images on a weekly basis.
## 4.3.0 (2021-11-23)
- Bump [`thelounge`][1] to [`4.3.0`](https://github.com/thelounge/thelounge/releases/tag/v4.3.0).
- Upgrade Node.js base images from 12 to LTS.