Skip to content

Commit

Permalink
feat: support --set key=value pairs string format (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
KROSF authored Jul 3, 2024
1 parent 293b932 commit 18482d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ inputs:
helm-release-name:
required: true
description: 'The name of the Helm release'
image-tag:
required: true
description: 'The tag of the Docker image to deploy'
namespace:
required: true
description: 'The namespace to deploy the Helm chart to'
set-values:
required: false
description: 'Coma-separated list of key=value pairs to set in the Helm chart values file using --set'
values:
required: true
description: 'The path to the values file for the Helm chart'
Expand Down Expand Up @@ -74,6 +74,6 @@ runs:
--timeout 0 \
--values ${{ inputs.values }} \
--namespace ${{ inputs.namespace }} \
--set global.image.tag=${{ inputs.image-tag }} \
--set ${{ inputs.set-values }} \
--dependency-update \
--version ${{ inputs.chart-version }}

0 comments on commit 18482d2

Please sign in to comment.