File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function doPublish() {
33
33
exec ( `git remote set-url origin https://rnbot:${ process . env . GIT_TOKEN } @github.com/microsoft/react-native.git` ) ;
34
34
35
35
exec ( `git add ${ pkgJsonPath } ` ) ;
36
- exec ( `git commit -m "Applying package update to ${ releaseVersion } ` ) ;
36
+ exec ( `git commit -m "Applying package update to ${ releaseVersion } ***NO_CI*** ` ) ;
37
37
exec ( `git tag v${ releaseVersion } ` ) ;
38
38
exec ( `git push origin HEAD:${ tempPublishBranch } --follow-tags --verbose` ) ;
39
39
exec ( `git push origin tag v${ releaseVersion } ` ) ;
Original file line number Diff line number Diff line change 3
3
push :
4
4
branches :
5
5
- master
6
- paths :
7
- - " **"
8
- - " !package.json"
9
6
10
7
jobs :
11
8
15
12
runs-on : windows-2016
16
13
17
14
steps :
15
+
16
+ - name : No publish loop
17
+ if : contains( github.event.head_commit, "***NO_CI***")
18
+ run : exit 123
19
+
18
20
- uses : actions/checkout@v1
19
21
with :
20
22
submodules : true
You can’t perform that action at this time.
0 commit comments