File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 32
32
echo "LATEST_COMMIT_MSG=${LATEST_COMMIT_MSG}" >> $GITHUB_OUTPUT
33
33
34
34
if [[ ${LATEST_COMMIT_MSG} == *"[release]"* ]]; then
35
+ echo "release message found - continuing"
35
36
IS_RELEASE="true"
36
37
else
38
+ echo "release message found - skipping"
37
39
IS_RELEASE="false"
38
40
fi
39
41
@@ -43,10 +45,16 @@ jobs:
43
45
release :
44
46
name : Release
45
47
runs-on : ubuntu-latest
46
- if : ${{ needs.check_commit.outputs.IS_RELEASE == 'true' }}
48
+ # if: ${{ needs.check_commit.outputs.IS_RELEASE == 'true' }}
47
49
env :
50
+ IS_RELEASE : ${{ needs.check_commit.outputs.IS_RELEASE }}
48
51
LATEST_COMMIT_MSG : ${{ needs.check_commit.outputs.LATEST_COMMIT_MSG }}
49
52
steps :
53
+ - name :
54
+ run : |
55
+ echo "IS_RELEASE=${IS_RELEASE}"
56
+ echo "LATEST_COMMIT_MSG=${LATEST_COMMIT_MSG}"
57
+
50
58
- name : Check out Git repository
51
59
uses : actions/checkout@v4
52
60
You can’t perform that action at this time.
0 commit comments