Skip to content

Commit

Permalink
🐛 Fix GH action.
Browse files Browse the repository at this point in the history
Signed-off-by: Preslav <[email protected]>
  • Loading branch information
preslavgerchev committed Oct 21, 2024
1 parent 5639cce commit 5a5f137
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
golang-version=1.23.0
3 changes: 2 additions & 1 deletion .github/workflows/code-gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ jobs:
id: git-diff
run: |
git diff --exit-code .
echo "GIT_DIFF=$?" >> $GITHUB_OUTPUT
EXIT_CODE=$(echo $?)
echo "GIT_DIFF=${EXIT_CODE}" >> $GITHUB_OUTPUT
- name: Create PR
if: steps.git-diff.outputs.GIT_DIFF == '1'
id: cpr
Expand Down

0 comments on commit 5a5f137

Please sign in to comment.