Fix jenkinsfile syntax

This commit is contained in:
zontreck 2024-07-21 02:35:09 -07:00
parent b175a97c41
commit 7836668d4c

10
Jenkinsfile vendored
View file

@ -11,7 +11,9 @@ pipeline {
} }
stages { stages {
step ("Build") { stage ("Build") {
steps {
script { script {
sh ''' sh '''
#!/bin/bash #!/bin/bash
@ -22,7 +24,9 @@ pipeline {
''' '''
} }
} }
step ('Package') { }
stage ('Package') {
steps {
script { script {
sh ''' sh '''
#!/bin/bash #!/bin/bash
@ -33,6 +37,8 @@ pipeline {
cp app-release.apk ../../../../ cp app-release.apk ../../../../
''' '''
} }
}
} }
} }