Add stable tag/reduce build frequency #30
|
Would it be possible to reduce the build frequency from daily to weekly? Or add a stable tag that gets updated less frequently? I use DIUN to notify me of container updates and it gets triggered every night which gets annoying. What I've done on other repos is create a separate build file but before I submitted the PR wanted to make sure that was ok. |
Replies: 8 comments 1 reply
|
The images are being built daily, but unless Dockerfile has been modified it re-uses the cached version and resulting image should always be the same. The only exception should be the Which tag are you checking updates for? |
|
|
|
Latest is an alias for latest release of rtl433 based on alpine image. It should change when a new version of rtl433 is released. Maybe you can configure DUIN. To check for image hash instead of last push date? (Not sure if that's the case) |
|
I'll be closing this for now as this is not an issue more of a discussion. Feel free to open a discussion with this topic if you have suggestion. |
|
I've converted this to a discussion if you have suggestions feel free to comment here. |
|
Oh that's cool that you can do that, thanks! I looked into configuring DIUN but no luck. From what I understand it goes off the hash so if that changes the notification goes off. Maybe I could use a different tag from |
|
Looked into the scheduled builds after PR #129 (the caching fix) was merged on 2026-01-11:
All 6 builds used the same upstream rtl_433 commit 8d92cdd ("Add support for Geevon TX19-1 temperature humidity sensor" from 2026-01-06) since there were no new commits to that repo. All builds show 13/13 Docker layers cached and complete in ~2 minutes. The Jan 14 outlier (23m) was due to slow arm/v7 emulated builds, not cache misses. The caching fix is working - when upstream hasn't changed, layers are fully cached and no new images are pushed. *slow arm/v7 emulation on that run |
Looked into the scheduled builds after PR #129 (the caching fix) was merged on 2026-01-11:
8d92cdd8d92cdd8d92cdd8d92cdd8d92cdd8d92cddAll 6 builds used the same upstream rtl_433 commit 8d92cdd ("Add support for Geevon TX19-1 temperature humidity sensor" from 2026-01-06) since there were no new commits to that repo.
All builds show 13/13 Docker layers cached and com…