We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 190013e commit b55a19bCopy full SHA for b55a19b
action.yml
@@ -28,14 +28,14 @@ runs:
28
- name: Automated Version Bump
29
id: version-bump
30
run: |
31
- if [[ ${{ fromJSON(inputs.app_version) }} ]]
32
- then
+ if [[ "${{ fromJSON(inputs.app_version) }}" == "true" ]]; then
33
pybump bump --file ${{ inputs.chart-path }}/Chart.yaml --level ${{ inputs.level }} --app-version
+ else
34
+ pybump bump --file ${{ inputs.chart-path }}/Chart.yaml --level ${{ inputs.level }}
35
fi
- pybump bump --file ${{ inputs.chart-path }}/Chart.yaml --level ${{ inputs.level }}
36
shell: bash
37
- name: Output Name
38
id: chart-name
39
40
- echo "::set-output name=chart::$(basename ${{ inputs.chart-path }})"
+ echo "chart=$(basename ${{ inputs.chart-path }})" >> $GITHUB_OUTPUT
41
0 commit comments