From a1843205039e66b6ddc3f6bd33cf37cc2859290f Mon Sep 17 00:00:00 2001 From: s3krit Date: Wed, 20 May 2020 12:26:10 +0200 Subject: [PATCH] [CI] Move check-labels to .post stage (#1114) --- polkadot/.gitlab-ci.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/polkadot/.gitlab-ci.yml b/polkadot/.gitlab-ci.yml index a7f0ad7081..d136d0e87b 100644 --- a/polkadot/.gitlab-ci.yml +++ b/polkadot/.gitlab-ci.yml @@ -69,17 +69,6 @@ variables: - /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1 - /^[0-9]+$/ -#### stage: .pre - -check-labels: - stage: .pre - image: parity/tools:latest - <<: *kubernetes-env - only: - - /^[0-9]+$/ - script: - - ./scripts/gitlab/check_tags.sh - #### stage: test check-runtime: @@ -286,3 +275,14 @@ deploy-polkasync-kusama: POLKADOT_CI_COMMIT_REF: "${CI_COMMIT_REF}" allow_failure: true trigger: "parity/infrastructure/parity-testnet" + +#### stage: .post + +check-labels: + stage: .post + image: parity/tools:latest + <<: *kubernetes-env + only: + - /^[0-9]+$/ + script: + - ./scripts/gitlab/check_tags.sh