Skip to content

Commit

Permalink
fixup! ci: fix generate-chart-schema job
Browse files Browse the repository at this point in the history
  • Loading branch information
yorugac committed Nov 1, 2024
1 parent b3ce758 commit ccd8dd6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
run: |
git diff --exit-code
if [ $? -eq 0 ]; then
echo "::set-output name=changes::false"
echo "changes=false" >> $GITHUB_OUTPUT
else
echo "::set-output name=changes::true"
echo "changes=true" >> $GITHUB_OUTPUT
fi
- name: "Commit changes and make PR"
if: steps.git-diff.outputs.changes == 'true'
if: steps.git-diff.changes == 'true'
run: |
git checkout -b helm/schema-update
git add charts/k6-operator/values.schema.json
Expand Down

0 comments on commit ccd8dd6

Please sign in to comment.