diff --git a/Jenkinsfile b/Jenkinsfile index 23ee3df..7831068 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,20 +2,20 @@ pipeline { agent any stages { - stage('sync') { + stage("sync") { steps { - git pull - git checkout develop + sh "git pull" + sh "git checkout develop" } } - stage('migration') { - pipenv run makemigrations + stage("migration") { + sh "pipenv run makemigrations" } - stage('build') { - cd django_lostplaces - python setup.py bdist_wheel --universal + stage("build") { + sh "cd django_lostplaces" + sh "python setup.py bdist_wheel --universal" } } } \ No newline at end of file