Edit Jenkinsfile

This commit is contained in:
Sebastien 2018-03-01 12:55:52 +01:00
parent a21a6f6ea6
commit bca69f8a52
2 changed files with 3 additions and 3 deletions

2
.gitattributes vendored
View File

@ -1,2 +1,2 @@
Jenkinsfile merge=ours
Dockerfile merge=ours

4
Jenkinsfile vendored
View File

@ -2,7 +2,7 @@ node {
def app
stage('Clone') { // for display purposes
// Get some code from a GitHub repository
git url: 'https://github.com/BrokenFire/BrokenDiscordBot.git', branch: 'devel'
git url: 'https://github.com/BrokenFire/BrokenDiscordBot.git'
}
stage('Gradle Buil'){
build job: 'Bot Discord Gradle', wait: true
@ -18,7 +18,7 @@ node {
* First, the incremental build number from Jenkins
* Second, the 'latest' tag.
* Pushing multiple tags is cheap, as all the layers are reused. */
app.push("devel")
app.push()
}
stage('Cleaning'){