@@ -51,12 +51,31 @@ jobs:
51
51
- name : Show commit message
52
52
run : echo "$commitmsg"
53
53
54
+ - name : Commit message compliance verification
55
+ if : startsWith( env.COMMIT_MESSAGE , 'chore(release):' ) != true
56
+
57
+
58
+ - name : Publish push tag verification
59
+ if : github.event_name == 'push' && contains( env.COMMIT_MESSAGE , '--tag=' ) != true
60
+
61
+
62
+ # Get & check npm publish
63
+ - name : Get publish params
64
+ if : github.event_name == 'push'
65
+ run : |
66
+ PUBLISH_PARAMS=`echo $COMMIT_MESSAGE | grep -oE "^chore\(release\): publish \S*\s(.*)" | cut -d " " -f 4-`
67
+ echo "PUBLISH_PARAMS=${PUBLISH_PARAMS}" >> $GITHUB_ENV
68
+
69
+ - name : Show publish params
70
+ if : github.event_name == 'push'
71
+ run : echo "Publish pushing provide parameter [$PUBLISH_PARAMS]."
72
+
54
73
# Define ${CURRENT_VERSION}
55
74
- name : Set Current Version
56
75
if : startsWith( env.commitmsg , 'chore(release):' )
57
76
shell : bash -ex {0}
58
77
run : |
59
- CURRENT_VERSION=$(node -p 'require("./lerna .json").version')
78
+ CURRENT_VERSION=$(node -p 'require("./packages/taro-ui/package .json").version')
60
79
echo "CURRENT_VERSION=${CURRENT_VERSION}" >> $GITHUB_ENV
61
80
62
81
# Check git tag
76
95
env :
77
96
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
78
97
98
+ # ------------------ If git tag already exists, skip -------------
99
+
100
+ - name : Git tag verification
101
+ if : steps.tag_check.outputs.exists_tag == false
102
+
103
+
79
104
# Bootstrap project
80
105
- name : Cache pnpm modules
81
106
uses : actions/cache@v3
@@ -139,3 +164,16 @@ jobs:
139
164
${{ github.event.pull_request.body }}
140
165
draft : false
141
166
prerelease : false
167
+
168
+ # Create PR page comment when event is PR
169
+ - uses : actions/github-script@v6
170
+ if : github.event.pull_request.merged == true
171
+ with :
172
+ github-token : ${{secrets.GITHUB_TOKEN}}
173
+ script : |
174
+ github.rest.issues.createComment({
175
+ issue_number: context.issue.number,
176
+ owner: context.repo.owner,
177
+ repo: context.repo.repo,
178
+ body: 'https://github.com/${{ github.repository }}/releases/tag/v${{ env.CURRENT_VERSION }} is released 🎉'
179
+ })
0 commit comments