diff --git a/.gitignore b/.gitignore index 7c5acd9..0a1e6b4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.env + # OS .DS_Store Thumbs.db diff --git a/Jenkinsfile b/Jenkinsfile index 1fac19b..69a6d7b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -147,7 +147,8 @@ pipeline { -------------------------------------------------------- */ } } - } + +} post { always { @@ -158,10 +159,10 @@ pipeline { """ } success { - echo "Image pushed: ${REGISTRY}/${IMAGE_NAME}:${IMAGE_TAG}" + echo "Deployed: ${REGISTRY}/${IMAGE_NAME}:${IMAGE_TAG}" } failure { - echo "Build failed — image was NOT pushed to the registry." + echo "Build failed — image was NOT pushed or deployed." } } }