Fix jenkinsfile syntax
This commit is contained in:
parent
b175a97c41
commit
7836668d4c
1 changed files with 23 additions and 17 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -11,7 +11,9 @@ pipeline {
|
|||
}
|
||||
|
||||
stages {
|
||||
step ("Build") {
|
||||
stage ("Build") {
|
||||
steps {
|
||||
|
||||
script {
|
||||
sh '''
|
||||
#!/bin/bash
|
||||
|
@ -22,7 +24,9 @@ pipeline {
|
|||
'''
|
||||
}
|
||||
}
|
||||
step ('Package') {
|
||||
}
|
||||
stage ('Package') {
|
||||
steps {
|
||||
script {
|
||||
sh '''
|
||||
#!/bin/bash
|
||||
|
@ -33,6 +37,8 @@ pipeline {
|
|||
cp app-release.apk ../../../../
|
||||
'''
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue