From f53232f2521af07c2426d18ac8b9fb184cbb3cae Mon Sep 17 00:00:00 2001 From: Daniel Williams Date: Mon, 12 Mar 2018 17:31:40 +0000 Subject: [PATCH] Fixed yaml syntax error. --- .gitlab-ci.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b110e0b..851c752 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ image: lpmn/lalsuite:minke-latest stages: - test - build -# - deploy + - deploy test: stage: test @@ -13,8 +13,6 @@ test: - pip install -r requirements.txt - python setup.py install - python setup.py test - # As a temporary measure - allow_failure: true pages: @@ -44,16 +42,10 @@ wheel: - dist deploy:wheel: - stage: deploy - script: + stage: deploy + script: - pip install twine - twine upload dist/* - artifacts: - expire_in: 3h - paths: - - dist - only: - - master #only: # - tags # except: -- GitLab