fix(ci): upload only changed files
All checks were successful
Gitea/TinderPokemon/pipeline/head This commit looks good

This commit is contained in:
2022-10-24 18:15:22 +02:00
parent 3dc554837f
commit ed2e1b331f

7
Jenkinsfile vendored
View File

@@ -21,14 +21,11 @@ pipeline {
stage('Deploy files') {
steps {
container('python') {
sh """
pwd
"""
sh 'pip install python-swiftclient python-keystoneclient'
sh """
. $SWIFT_CREDENTIALS
swift upload tinderpokemon *html
swift upload tinderpokemon assets/
swift upload --changed tinderpokemon *html
swift upload --changed tinderpokemon assets/
"""
}
}