Skip to content

Commit

Permalink
Merge pull request #5 from draios/fix-dry-run
Browse files Browse the repository at this point in the history
Fix use of dry_run
  • Loading branch information
dbonf authored Feb 3, 2022
2 parents 733d4b6 + e8fdee8 commit fd3d312
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:

- name: test package helm chart
uses: draios/[email protected]
if: ${{ inputs.dry_run }}
if: ${{ inputs.dry_run == 'false' }}
env:
ACTION: package
CHART_DIR: ${{ inputs.chart_dir }}
Expand All @@ -56,7 +56,7 @@ runs:

- name: publish helm chart to artifactory
uses: draios/[email protected]
if: ${{ ! inputs.dry_run }}
if: ${{ inputs.dry_run != 'true' }}
env:
ACTION: publish
CHART_DIR: ${{ inputs.chart_dir }}
Expand Down

0 comments on commit fd3d312

Please sign in to comment.