Skip to content

Commit

Permalink
fix(deploy): fix output format
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Müller <rmuller@mozilla.com>
  • Loading branch information
Flipez committed Mar 11, 2024
1 parent bab1360 commit 888f62d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ runs:
helm list \
--filter ${{ inputs.helm_release_name }} \
--namespace ${{ inputs.app_name }}-${{ inputs.env_name }} \
--no-headers | awk '{printf "app=%s",$10}' | tee $GITHUB_OUTPUT
--no-headers | awk '{printf "deployed_chart_app_version=%s",$10}' | tee $GITHUB_OUTPUT
- name: helm chart version
id: helm_chart_version
Expand All @@ -163,4 +163,4 @@ runs:
helm list \
--filter ${{ inputs.helm_release_name }} \
--namespace ${{ inputs.app_name }}-${{ inputs.env_name }} \
--no-headers | awk '{printf "chart=%s",$9}' | tee $GITHUB_OUTPUT
--no-headers | awk '{printf "deployed_chart_version=%s",$9}' | tee $GITHUB_OUTPUT

0 comments on commit 888f62d

Please sign in to comment.