File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 13
13
types : [completed]
14
14
15
15
jobs :
16
- check-commit :
16
+ check_commit :
17
17
name : Check Commit
18
18
runs-on : ubuntu-latest
19
19
outputs :
20
- IS_RELEASE : ${{ steps.check_commit .outputs.IS_RELEASE }}
21
- LATEST_COMMIT_MSG : ${{ steps.check_commit .outputs.LATEST_COMMIT_MSG }}
20
+ IS_RELEASE : ${{ steps.check_msg .outputs.IS_RELEASE }}
21
+ LATEST_COMMIT_MSG : ${{ steps.check_msg .outputs.LATEST_COMMIT_MSG }}
22
22
steps :
23
23
- name : Check out Git repository
24
24
uses : actions/checkout@v4
25
25
26
26
- name : Check latest commit message
27
- id : check_commit
27
+ id : check_msg
28
28
run : |
29
29
set -e
30
30
43
43
release :
44
44
name : Release
45
45
runs-on : ubuntu-latest
46
- if : ${{ needs.check-commit .outputs.IS_RELEASE == 'true' }}
46
+ if : ${{ needs.check_commit .outputs.IS_RELEASE == 'true' }}
47
47
env :
48
- LATEST_COMMIT_MSG : ${{ needs.check-commit .outputs.LATEST_COMMIT_MSG }}
48
+ LATEST_COMMIT_MSG : ${{ needs.check_commit .outputs.LATEST_COMMIT_MSG }}
49
49
steps :
50
50
- name : Check out Git repository
51
51
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments