diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d4511a77e8a067cffc9d3f91a92a5c8612fde803..153ff3c2ea9effbb5d0efbbbe36e0b5c923baf9a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,7 +27,7 @@ before_script: - apt-get update -y - apt-get install -y zip - mkdir bin - + build-job: # This job runs in the build stage, which runs first. stage: build script: @@ -43,8 +43,6 @@ build-job: # This job runs in the build stage, which runs first. upload: stage: upload image: curlimages/curl:latest - rules: - - if: $CI_COMMIT_TAG script: - | curl --header "JOB-TOKEN: ${CI_JOB_TOKEN}" --upload-file bin/${WINDOWS_X64_BINARY} ${PACKAGE_REGISTRY_URL}/${WINDOWS_X64_BINARY} @@ -52,8 +50,6 @@ upload: release-job: stage: release image: registry.gitlab.com/gitlab-org/release-cli:latest - rules: - - if: $CI_COMMIT_TAG script: - | release-cli create --name "Release $CI_COMMIT_TAG" --tag-name $CI_COMMIT_TAG \