From bad72a741b50eb71379bcaba49292e861ebbe652 Mon Sep 17 00:00:00 2001 From: DHCPCD Date: Thu, 31 Mar 2022 01:22:24 +0300 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d4511a7..153ff3c 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 \ -- GitLab