Skip to content

Commit

Permalink
ci(workflows): fix typo in helm chart release script
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoprow committed Jun 19, 2024
1 parent ad25c50 commit a178689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/helm-chart-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
CHART_VERSION=$(grep 'version:' ./charts/bpdm/Chart.yaml | head -n1 | awk '{ print $2}')
SNAPSHOT=$(echo $CHART_VERSION | grep 'SNAPSHOT')
if test -z $SNAPSHOT; then IS_RELEASE=true; else IS_RELEASE=false fi
echo "isRelease=$IS_RELEASE" >> GITHUB_OUTPUT
echo "isRelease=$IS_RELEASE" >> $GITHUB_OUTPUT
- name: Configure Git
if: steps.checkRelease.outputs.isRelease == 'true'
Expand Down

0 comments on commit a178689

Please sign in to comment.