forked from wix/react-native-calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline.yml
35 lines (34 loc) ยท 852 Bytes
/
pipeline.yml
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
env:
LC_ALL: 'en_US'
steps:
- block: ":rocket: Release!"
prompt: "Fill out the details for release"
if: 'build.message =~ /^release\$/i'
fields:
- select: "IS_SNAPSHOT_BUILD"
key: "is-snapshot"
hint: "Publish snapshot version"
default: 'false'
options:
- label: "True"
value: true
- label: "False"
value: false
- select: "IS_HOTFIX_BUILD"
key: "is-hotfix"
hint: "Publish hotfix version"
default: 'false'
options:
- label: "True"
value: true
- label: "False"
value: false
- label: "Build"
command: |
nvm install
npm install
npm run test
npm run build:ts
if [[ $BUILDKITE_PULL_REQUEST == 'false' ]];then
npm run release
fi