aboutsummaryrefslogtreecommitdiffstats
path: root/build/ci.go
diff options
context:
space:
mode:
Diffstat (limited to 'build/ci.go')
-rw-r--r--build/ci.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/build/ci.go b/build/ci.go
index 044a9d80d..931fa2f83 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -406,7 +406,7 @@ func doArchive(cmdline []string) {
arch = flag.String("arch", runtime.GOARCH, "Architecture cross packaging")
atype = flag.String("type", "zip", "Type of archive to write (zip|tar)")
signer = flag.String("signer", "", `Environment variable holding the signing key (e.g. LINUX_SIGNING_KEY)`)
- upload = flag.String("upload", "", `Destination to upload the archives (usually "dexon-builds")`)
+ upload = flag.String("upload", "", `Destination to upload the archives (usually "dexon-prod-builds")`)
ext string
)
flag.CommandLine.Parse(cmdline)
@@ -811,7 +811,7 @@ func doAndroidArchive(cmdline []string) {
local = flag.Bool("local", false, `Flag whether we're only doing a local build (skip Maven artifacts)`)
signer = flag.String("signer", "", `Environment variable holding the signing key (e.g. ANDROID_SIGNING_KEY)`)
deploy = flag.String("deploy", "", `Destination to deploy the archive (usually "https://oss.sonatype.org")`)
- upload = flag.String("upload", "", `Destination to upload the archive (usually "dexon-builds")`)
+ upload = flag.String("upload", "", `Destination to upload the archive (usually "dexon-prod-builds")`)
)
flag.CommandLine.Parse(cmdline)
env := build.Env()
@@ -939,7 +939,7 @@ func doXCodeFramework(cmdline []string) {
local = flag.Bool("local", false, `Flag whether we're only doing a local build (skip Maven artifacts)`)
signer = flag.String("signer", "", `Environment variable holding the signing key (e.g. IOS_SIGNING_KEY)`)
deploy = flag.String("deploy", "", `Destination to deploy the archive (usually "trunk")`)
- upload = flag.String("upload", "", `Destination to upload the archives (usually "dexon-builds")`)
+ upload = flag.String("upload", "", `Destination to upload the archives (usually "dexon-prod-builds")`)
)
flag.CommandLine.Parse(cmdline)
env := build.Env()
@@ -1079,7 +1079,7 @@ func xgoTool(args []string) *exec.Cmd {
func doPurge(cmdline []string) {
var (
- store = flag.String("store", "", `Destination from where to purge archives (usually "dexon-builds")`)
+ store = flag.String("store", "", `Destination from where to purge archives (usually "dexon-prod-builds")`)
limit = flag.Int("days", 30, `Age threshold above which to delete unstable archives`)
)
flag.CommandLine.Parse(cmdline)