We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 437688f + dc8dfd9 commit ce49abaCopy full SHA for ce49aba
2 files changed
.circle/deployment
@@ -51,6 +51,14 @@ do
51
fi
52
done
53
54
+# Afer pushing the version, make sure we check out the latest commit
55
+# This is important so index reflects latest changes
56
+git checkout master
57
+git reset --hard master
58
+
59
+# Verify there are no unstaged changes
60
+git status
61
62
# Rebuild pack index directory
63
~/virtualenv/bin/python ~/ci/utils/pack_content.py --input . --output ~/index/v1/packs/"${PACK_NAME}"
64
.circle/semver.py
@@ -34,6 +34,5 @@ def get_semver_string(version):
34
raise ValueError("Cannot convert %s to semver." % version)
35
36
if __name__ == '__main__':
37
-
38
pack = validate.load_yaml_file(sys.argv[1])
39
- print get_semver_string(pack['version'])
+ print(get_semver_string(pack['version']))
0 commit comments