From 83fafd4b068897a56527f28fccd0571f2a85f28a Mon Sep 17 00:00:00 2001
From: softir <elisabetta.giani@inaf.it>
Date: Thu, 21 May 2020 09:32:21 +0200
Subject: [PATCH] publish_python_package: fix bug in .gitalb-ci.yaml file.

---
 .gitlab-ci.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9152b0e..30bb7ee 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -75,7 +75,7 @@ build_dev_package:
   script:
     - python3 setup.py egg_info -b+dev.$CI_COMMIT_SHORT_SHA sdist bdist_wheel
   artifacts:
-    path:
+    paths:
       - ./dist
 
 build_package:
@@ -86,14 +86,14 @@ build_package:
     - python setup.py egg_info -b.$CI_COMMIT_SHORT_SHA sdist bdist_wheel
   only: [master]
   artifacts:
-    path:
+    paths:
       - ./dist
 
-publish:        
-   stage: publish
-   tags:
-     - docker-executor
-   variables:
+publish_package:        
+  stage: publish
+  tags:
+    - docker-executor
+  variables:
     TWINE_USERNAME: $TWINE_USERNAME
     TWINE_PASSWORD: $TWINE_PASSWORD
   script:
-- 
GitLab