We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6ba4ad commit 868cc8dCopy full SHA for 868cc8d
1 file changed
.circleci/package_release.py
@@ -1,12 +1,13 @@
1
from os import path, pardir
2
-from ecosystem_cicd_tools.release import (
3
- plugin_release_with_latest, find_version)
+from ecosystem_cicd_tools.release import plugin_release_with_latest
+from ecosystem_cicd_tools.validations import get_plugin_yaml_version
4
5
-setup_py = path.join(
+
6
+plugin_yaml = path.join(
7
path.abspath(path.join(path.dirname(__file__), pardir)),
- 'setup.py')
8
+ 'plugin.yaml')
9
10
11
if __name__ == '__main__':
12
plugin_release_with_latest(
- 'cloudify-openstack-plugin', find_version(setup_py))
13
+ 'cloudify-openstack-plugin', get_plugin_yaml_version(plugin_yaml))
0 commit comments