Skip to content

Commit 868cc8d

Browse files
authored
Rd 817 manila sdk (#385)
* add Manila SDK * manila sdk and tests * manila support * fix tests * manila changes * add cicd * fix build bundle step * update version string
1 parent a6ba4ad commit 868cc8d

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.circleci/package_release.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
from os import path, pardir
2-
from ecosystem_cicd_tools.release import (
3-
plugin_release_with_latest, find_version)
2+
from ecosystem_cicd_tools.release import plugin_release_with_latest
3+
from ecosystem_cicd_tools.validations import get_plugin_yaml_version
44

5-
setup_py = path.join(
5+
6+
plugin_yaml = path.join(
67
path.abspath(path.join(path.dirname(__file__), pardir)),
7-
'setup.py')
8+
'plugin.yaml')
89

910

1011
if __name__ == '__main__':
1112
plugin_release_with_latest(
12-
'cloudify-openstack-plugin', find_version(setup_py))
13+
'cloudify-openstack-plugin', get_plugin_yaml_version(plugin_yaml))

0 commit comments

Comments
 (0)