Skip to content
Snippets Groups Projects

Changed the way of calculating speeds and turns (+ minor features)

Merged Andi Gerken requested to merge develop into master
Files
20
+ 2
2
@@ -19,9 +19,9 @@ if __name__ == "__main__":
@@ -19,9 +19,9 @@ if __name__ == "__main__":
env["TWINE_PASSWORD"] = env["CI_JOB_TOKEN"]
env["TWINE_PASSWORD"] = env["CI_JOB_TOKEN"]
if args.production:
if args.production:
target_project_id = env['ARTIFACTS_REPOSITORY_PROJECT_ID']
target_project_id = env["ARTIFACTS_REPOSITORY_PROJECT_ID"]
else:
else:
target_project_id = env['CI_PROJECT_ID']
target_project_id = env["CI_PROJECT_ID"]
command = ["python3"]
command = ["python3"]
command += ["-m", "twine", "upload", "dist/*"]
command += ["-m", "twine", "upload", "dist/*"]
Loading