From b4222727b2944399caa2b9404171c45d3026d4e7 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Tue, 12 Aug 2025 13:54:52 -0400 Subject: [PATCH] workflows: build and push ceph20 based images The samba-container project recently established a new package source, `ceph20` intended to provide images for Ceph 20.y.z (aka tentacle). Create a ceph20 patterned image for the samba-metrics image too. Signed-off-by: John Mulligan --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 62cd265..8e0bf02 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -116,3 +116,9 @@ jobs: - name: push dev container image # note: forcing use of docker here, since we did docker login above run: make CONTAINER_CMD=docker BASE_IMG_TAG=devbuilds-centos-amd64 image-push + - name: build ceph20 container image + # note: forcing use of docker here, since we did docker login above + run: make CONTAINER_CMD=docker BASE_IMG_TAG=ceph20-centos-amd64 image-build + - name: push ceph20 container image + # note: forcing use of docker here, since we did docker login above + run: make CONTAINER_CMD=docker BASE_IMG_TAG=ceph20-centos-amd64 image-push