File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ runs:
28
28
- name : Automated Version Bump
29
29
id : version-bump
30
30
run : |
31
- if [[ ${{ fromJSON(inputs.app_version) }} ]]
32
- then
31
+ if [[ "${{ fromJSON(inputs.app_version) }}" == "true" ]]; then
33
32
pybump bump --file ${{ inputs.chart-path }}/Chart.yaml --level ${{ inputs.level }} --app-version
33
+ else
34
+ pybump bump --file ${{ inputs.chart-path }}/Chart.yaml --level ${{ inputs.level }}
34
35
fi
35
- pybump bump --file ${{ inputs.chart-path }}/Chart.yaml --level ${{ inputs.level }}
36
36
shell : bash
37
37
- name : Output Name
38
38
id : chart-name
39
39
run : |
40
- echo "::set-output name= chart:: $(basename ${{ inputs.chart-path }})"
40
+ echo "chart= $(basename ${{ inputs.chart-path }})" >> $GITHUB_OUTPUT
41
41
shell : bash
You can’t perform that action at this time.
0 commit comments