From cf1250e4aa05ea4498921e4180c60fdce3ada0f1 Mon Sep 17 00:00:00 2001 From: Sven Marcus <sven.marcus@tu-braunschweig.de> Date: Tue, 13 Sep 2022 16:16:37 +0200 Subject: [PATCH] Remove deprecated release job --- .gitlab-ci.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1e1671536..ccaad7f09 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -617,26 +617,3 @@ sonar-scanner: script: - cd $CI_PROJECT_DIR - sonar-scanner -X -Dsonar.verbose=true -Dsonar.login=$SONAR_SECURITY_TOKEN - -############################################################################### -## Release ## -############################################################################### -create_release: - stage: release - - image: registry.gitlab.com/gitlab-org/release-cli:latest - - needs: ["build_singularity_image"] - - rules: - - if: $CI_COMMIT_TAG - - script: - - echo "Creating release with tag $CI_COMMIT_TAG" - - release-cli create --name "VirtualFluids $CI_COMMIT_TAG" \ - --description "VirtualFluids CFD Simulator" \ - --tag-name "$CI_COMMIT_TAG" \ - --ref "$CI_COMMIT_SHA" \ - --job-token "$CI_JOB_TOKEN" \ - --assets-link="{'name':'VirtualFluidsSingularityImage_OpenMPI','url':'','type':'other','filepath':'Containers/VirtualFluidsOpenMPI.sif'}" - - build/bin/basicsTests -- GitLab