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 }}