forked from twilio/twilio-voice-react-native
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.release.json
55 lines (55 loc) · 2.14 KB
/
.release.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"type": "JavaScript",
"ci": "circleci",
"slug": "twilio/twilio-voice-react-native",
"env": {
"GH_REF": "github.com/twilio/twilio-voice-react-native.git"
},
"plans": {
"release": {
"env": {
"GIT_USER_NAME": "twilio-vblocks-ci",
"GIT_USER_EMAIL": "[email protected]"
},
"commands": [
"git config user.name \"${GIT_USER_NAME}\"",
"git config user.email \"${GIT_USER_EMAIL}\"",
"git remote set-url origin \"https://${GH_TOKEN}@${GH_REF}\"",
"node ./node_modules/.bin/release --bump ${CURRENT_VERSION} ${RELEASE_VERSION}",
"git add package.json",
"yarn run build:docs",
"git add -f docs lib",
"git add -f src/constants.ts",
"git add -f ios/TwilioVoiceReactNativeConstants.h",
"git add -f android/src/main/java/com/twiliovoicereactnative/CommonConstants.java",
"git commit -nm \"${RELEASE_VERSION}\"",
"git tag ${RELEASE_VERSION}",
"git rebase HEAD ${BRANCH}",
"git push origin ${BRANCH} --tags &> /dev/null && echo \"Push to origin successful\" || (echo \"Push to origin failed\" 1>&2 && exit 1)"
]
},
"development": {
"commands": [
"git config user.name \"${GIT_USER_NAME}\"",
"git config user.email \"${GIT_USER_EMAIL}\"",
"git remote set-url origin \"https://${GH_TOKEN}@${GH_REF}\"",
"node ./node_modules/.bin/release --bump ${RELEASE_VERSION} ${DEVELOPMENT_VERSION}",
"git add package.json",
"git rm -r docs lib",
"git rm -r src/constants.ts",
"git rm -r ios/TwilioVoiceReactNativeConstants.h",
"git rm -r android/src/main/java/com/twiliovoicereactnative/CommonConstants.java",
"git commit -nm \"${DEVELOPMENT_VERSION}\"",
"git rebase HEAD ${BRANCH}",
"git push origin ${BRANCH} &> /dev/null && echo \"Push to origin successful\" || (echo \"Push to origin failed\" 1>&2 && exit 1)"
]
},
"publish": {
"commands": [
"git checkout ${RELEASE_VERSION}",
"echo \"//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}\" >~/.npmrc",
"npm publish"
]
}
}
}