File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -53,24 +53,24 @@ jobs:
53
53
id : bindings_diff
54
54
shell : bash
55
55
run : |
56
- if git diff --exit-code >> cargo_generated_diff.txt ; then
56
+ if git diff --exit-code >> cargo_binding_update.patch ; then
57
57
echo "diff-found=false" >> $GITHUB_OUTPUT
58
58
else
59
59
echo "diff-found=true" >> $GITHUB_OUTPUT
60
60
{
61
61
echo 'diff-content<<@@@'
62
- echo "$(cat cargo_generated_diff.txt )"
62
+ echo "$(cat cargo_binding_update.patch )"
63
63
echo '@@@'
64
64
} >> $GITHUB_OUTPUT
65
- echo "$(cat cargo_generated_diff.txt )"
65
+ echo "$(cat cargo_binding_update.patch )"
66
66
fi
67
67
- name : Upload the patch file
68
68
if : steps.bindings_diff.outputs.diff-found == 'true'
69
69
id : upload_patch
70
70
uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
71
71
with :
72
- name : cargo_generated_diff_ ${{ matrix.os }}.patch
73
- path : cargo_generated_diff.txt
72
+ name : cargo_binding_update_ ${{ matrix.os }}
73
+ path : cargo_binding_update.patch
74
74
- name : Post a comment on PR on mismatch
75
75
if : |
76
76
!github.event.pull_request.head.repo.fork &&
You can’t perform that action at this time.
0 commit comments