From b9e589357f4fdbce0252d41488a358bf5d8bac6e Mon Sep 17 00:00:00 2001 From: Matthias Stefan Bodenbenner <m.bodenbenner@wzl.rwth-aachen.de> Date: Tue, 5 Apr 2022 15:51:05 +0200 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 35 +---------------------------------- 1 file changed, 1 insertion(+), 34 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 30977d4..36734f5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,16 +33,8 @@ Push Wheel to Package Registry: - python -m twine upload -u gitlab-ci-token -p $CI_JOB_TOKEN --verbose --repository-url https://git-ce.rwth-aachen.de/api/v4/projects/${CI_PROJECT_ID}/packages/pypi dist/* Build Documentation: - # image: docker:20.10 - # stage: build - # only: - # - master - # tags: - # - frodo - # script: - # - docker build -t ${CI_REGISTRY}/${CI_PROJECT_PATH} . image: python:3.9 - stage: build + stage: deploy tags: - frodo only: @@ -56,28 +48,3 @@ Build Documentation: artifacts: paths: - public - -#Push Documentation: -# image: docker:20.10 -# stage: push -# only: -# - master -# tags: -# - frodo -# script: -# - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY -# - docker push ${CI_REGISTRY}/${CI_PROJECT_PATH}:latest - -#Deploy Documentation: -# stage: deploy -# only: -# - master -# tags: -# - sam -# needs: ["Push Documentation"] -# script: -# - ls -# - docker stop documentation-mqtt -# - docker container rm documentation-mqtt -# - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY -# - docker-compose up -d -- GitLab