From 8a395a04cfdf91b1206f08ea409b26192bfab1ca Mon Sep 17 00:00:00 2001 From: Sagi Shnaidman Date: Thu, 29 Jul 2021 10:18:32 +0300 Subject: [PATCH] Remove semver check from release job Jinja in Zuul Ansible version doesn't support semver key for versions. Change-Id: I8bf9aa17e18f9b6d2c8e307f4368d1cea3362cb5 --- ci/publish/publish_collection.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/ci/publish/publish_collection.yml b/ci/publish/publish_collection.yml index 809c2d8f..4b74f953 100644 --- a/ci/publish/publish_collection.yml +++ b/ci/publish/publish_collection.yml @@ -24,20 +24,6 @@ msg: "No tag was found in Zuul vars!" when: version_tag == 'no_version' - # Ansible Galaxy can accept only pure semver versions - # see https://semver.org for details - - name: Check that tag is proper semver - debug: - msg: >- - {{ version_tag is version('999.999.999', 'lt', version_type='semver') }} - ignore_errors: true - register: test_semver - - - name: Fail if tag is not proper semver - fail: - msg: "Error is: {{ test_semver.msg }}" - when: test_semver is failed - - name: Create a directory for collection file: state: "{{ item }}"