From 736ce1cbc625f8ea0fcacf7d8c59563da17ed0e7 Mon Sep 17 00:00:00 2001 From: Darshan K <35736874+DarshanBPatel@users.noreply.github.com> Date: Mon, 27 May 2024 16:22:48 +0530 Subject: [PATCH] feat: it's push newly released nwaku image with latest-release tag (#2732) --- ci/Jenkinsfile.release | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/Jenkinsfile.release b/ci/Jenkinsfile.release index e4c42ed99..476b09ae2 100644 --- a/ci/Jenkinsfile.release +++ b/ci/Jenkinsfile.release @@ -95,6 +95,7 @@ pipeline { /* If Git ref is a tag push it as Docker tag too. */ if (params.GIT_REF ==~ /v\d+\.\d+\.\d+.*/) { image.push(params.GIT_REF) + image.push('latest-release') } } } }