Skip to content

Commit

Permalink
[skip ci] update release-push-docker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
richard-axual committed Jun 28, 2024
1 parent dce4d1a commit f591b5a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release-push-docker.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: build and push release Docker images

on:
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -54,17 +55,17 @@ 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:
needs: release-push-docker
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 }}

0 comments on commit f591b5a

Please sign in to comment.