From f591b5a8f9adfa8f966149b347b6cca805664e3a Mon Sep 17 00:00:00 2001 From: Richard Bosch Date: Fri, 28 Jun 2024 13:16:23 +0200 Subject: [PATCH] [skip ci] update release-push-docker workflow --- .github/workflows/release-push-docker.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-push-docker.yml b/.github/workflows/release-push-docker.yml index e9062232..7e312851 100644 --- a/.github/workflows/release-push-docker.yml +++ b/.github/workflows/release-push-docker.yml @@ -1,4 +1,5 @@ name: build and push release Docker images + on: workflow_dispatch: inputs: @@ -54,11 +55,11 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: | - axual/ksml:${{ github.event.release.tag_name }} + axual/ksml:${{ env.RELEASE_TAG }} axual/ksml:latest - ghcr.io/axual/ksml:${{ github.event.release.tag_name }} + ghcr.io/axual/ksml:${{ env.RELEASE_TAG }} ghcr.io/axual/ksml:latest - registry.axual.io/opensource/images/axual/ksml:${{ github.event.release.tag_name }} + registry.axual.io/opensource/images/axual/ksml:${{ env.RELEASE_TAG }} registry.axual.io/opensource/images/axual/ksml:latest helm-chart-release: @@ -66,5 +67,5 @@ jobs: uses: './.github/workflows/package-push-helm.yml' secrets: inherit with: - app-version: ${{ inputs.tag || github.event.release.tag_name }} - version: ${{ inputs.tag || github.event.release.tag_name }} + app-version: ${{ env.RELEASE_TAG }} + version: ${{ env.RELEASE_TAG }}