From a78d01c02ff84bc8269bc988839f465f6d37f330 Mon Sep 17 00:00:00 2001 From: Eloy Coto Date: Thu, 3 Aug 2023 16:29:09 +0200 Subject: [PATCH] Actions: push stable images when release Signed-off-by: Eloy Coto --- .github/workflows/on-release.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/on-release.yaml b/.github/workflows/on-release.yaml index 8007d5f..89d552c 100644 --- a/.github/workflows/on-release.yaml +++ b/.github/workflows/on-release.yaml @@ -103,3 +103,9 @@ jobs: make build-image-openshift GIT_BRANCH="${{ steps.new-version.outputs.new_version }}" make push-image GIT_BRANCH="${{ steps.new-version.outputs.new_version }}" make push-image-openshift GIT_BRANCH="${{ steps.new-version.outputs.new_version }}" + + # Images for stable images, At the moment, we always release new one as stable. + make build-image GIT_BRANCH="stable" + make build-image-openshift GIT_BRANCH="stable" + make push-image GIT_BRANCH="stable" + make push-image-openshift GIT_BRANCH="stable"