From 1d787a3b1d11597af01727d5af9e968208473dcf Mon Sep 17 00:00:00 2001 From: reverend Date: Sat, 10 Jul 2021 13:31:34 +0200 Subject: [PATCH] . --- Jenkinsfile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2a15a57..c128f6e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,15 +12,19 @@ pipeline { } stage("migration") { - script { - pipenv run makemigrations + steps { + script { + pipenv run makemigrations + } } } stage("build") { - script { - cd django_lostplaces - python setup.py bdist_wheel --universal + steps { + script { + cd django_lostplaces + python setup.py bdist_wheel --universal + } } } }