Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
XudongLiuHarold authored Mar 7, 2024
1 parent fec9796 commit b2f54e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/bump-k8s.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
- name: Check for changes and update version
id: changes
run: |
echo "changes=$(git diff)" >> $GITHUB_OUTPUT
git_diff_output=$(git diff)
if [ -n "$git_diff_output" ]; then
echo "changes=true" >> $GITHUB_OUTPUT
fi
- name: Create PR
if: steps.changes.outputs.changes
Expand Down

0 comments on commit b2f54e3

Please sign in to comment.