-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jenkinsfile
26 lines (26 loc) · 1.16 KB
/
Jenkinsfile
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
#!/usr/bin/env groovy
@Library("jenkins-pipeline-library@automation") _
entry {
isDryRun = false
flow = "frontend"
configInfo = [
deploymentGroup : "aftership",
appName : "tracking-sdk-nodejs",
gitRepoName : "tracking-sdk-nodejs.git",
chartName : "",
essentialDockerImage : "nodejs-essential",
essentialTag : "nodejs-18.18.2",
requireStaticAsset : false,
uploadAssetCredential : "",
domainType : "",
unitTest : "",
integrationTest : "",
useEnvironmentVariable : false,
hasStagingEnvironment : false,
hasProductionEnvironment : true,
useNPM : false,
npmPackageOnly : true,
prePublishScript : "yarn build",
optionsForAftershipPublish : ""
]
}