Skip to content

Commit 6d7c307

Browse files
YaroslavnaMatkovalemanchesterHuiyan
authored
Update README.md (#10)
* Fix Jenkins file to deply only on master * Update README.md (#51) Co-authored-by: Lennon Manchester <[email protected]> Co-authored-by: Lennon Manchester <[email protected]> Co-authored-by: Huiyan <[email protected]>
1 parent 2974300 commit 6d7c307

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

Jenkinsfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,20 @@ pipeline {
1818
}
1919
}
2020
stage('Build Production') {
21+
when {
22+
branch "master"
23+
}
24+
2125
steps {
2226
sh "npm run clean"
2327
sh "npm run build:demo"
2428
}
2529
}
2630
stage('Deploy Production') {
31+
when {
32+
branch "master"
33+
}
34+
2735
steps {
2836
sh "rsync -e 'ssh -o StrictHostKeyChecking=no' -va --rsync-path='mkdir -p /home/dashboard/web-sdk-demo/current/public/ && rsync' --delete ./demo/ [email protected]://home/dashboard/web-sdk-demo/current/public/"
2937
}

docs/korean/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ Track event 메서드에는 이 파라미터가 필요하므로 올바른 이벤
147147
```js
148148
Adjust.trackEvent({
149149
// ... 필수 파라미터를 포함하는 다른 파라미터가 여기에 들어갑니다
150-
매출: 110,
151-
통화: 'EUR'
150+
revenue: 110,
151+
currency: 'EUR'
152152
})
153153
```
154154

0 commit comments

Comments
 (0)