Skip to content

Commit

Permalink
chore(tools): update release jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Godefroy Ponsinet <[email protected]>
  • Loading branch information
90dy authored and moul committed Jul 31, 2019
1 parent 4b652b2 commit 69d7760
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions server/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ const (
BUNDLE_YOLO_ID = "chat.berty.ios.yolo"
APP_STAFF_NAME = "Berty Staff"
APP_YOLO_NAME = "Berty Yolo"
IOS_STAFF_JOB = "client.rn.ios"
IOS_YOLO_JOB = "client.rn.ios-beta"
MAC_STAFF_JOB = "client.rn.mac"
MAC_YOLO_JOB = "client.rn.mac-beta"
ANDROID_STAFF_JOB = "client.rn.android"
ANDROID_YOLO_JOB = "client.rn.android-beta"
IOS_STAFF_JOB = "ios_staff"
IOS_YOLO_JOB = "ios_yolo"
MAC_STAFF_JOB = "mac_staff"
MAC_YOLO_JOB = "mac_yolo"
ANDROID_STAFF_JOB = "android_staff"
ANDROID_YOLO_JOB = "android_yolo"
SLACK_WEBHOOK_URL = "https://hooks.slack.com/services/T2AJ2MM5Z/BFX8ZASKW/***REMOVED***"
)

Expand Down Expand Up @@ -859,7 +859,7 @@ func (s *Server) Itms(c echo.Context) error {
previewText := previewTexts[rand.Intn(len(previewTexts))]
var bundleID string
switch theBuild.BuildParameters["CIRCLE_JOB"] {
case "client.rn.ios":
case "ios_staff":
bundleID = BUNDLE_STAFF_ID
case IOS_YOLO_JOB:
bundleID = BUNDLE_YOLO_ID
Expand Down

0 comments on commit 69d7760

Please sign in to comment.