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 {
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 ../../../../
'''
}
}
}
}