Skip to content

Commit

Permalink
ci: try quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywhitaker3 committed Apr 20, 2024
1 parent 4b6b6a9 commit ad460b9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ jobs:
rc=$?
set -e
if [ $rc -eq 0 ]; then
echo "CHART_EXISTS=yes" >> $GITHUB_OUTPUT
echo Chart version already exists
echo "CHART_EXISTS='yes'" >> $GITHUB_OUTPUT
else
echo "CHART_EXISTS=no" >> $GITHUB_OUTPUT
echo Chart version does not exist
echo "CHART_EXISTS='no'" >> $GITHUB_OUTPUT
fi
- name: Push chart
Expand Down

0 comments on commit ad460b9

Please sign in to comment.