summaryrefslogtreecommitdiffstats
path: root/.github/scripts
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2024-04-02 09:13:10 -0400
committerGitHub <noreply@github.com>2024-04-02 09:13:10 -0400
commit874b55605268e7ae6617f39019fbe32721768542 (patch)
tree7c516ccf034a317f3cd1a9ca205883571d144608 /.github/scripts
parent926956efc8f3126307a0ba54900ee3e15ec67647 (diff)
Fix assorted issues in the Docker build process. (#17312)
* Fix assorted issues in the Docker build process. * Correctly add stable tag to tag list.
Diffstat (limited to '.github/scripts')
-rwxr-xr-x.github/scripts/gen-docker-tags.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/scripts/gen-docker-tags.py b/.github/scripts/gen-docker-tags.py
index c45b991d90..f60e1cd41b 100755
--- a/.github/scripts/gen-docker-tags.py
+++ b/.github/scripts/gen-docker-tags.py
@@ -31,4 +31,6 @@ match version:
)
])
+ tags = tags + tuple([f'{r}:stable' for r in REPOS])
+
print(','.join(tags))