We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a649dc commit 6696d44Copy full SHA for 6696d44
1 file changed
src/action_main.py
@@ -17,7 +17,7 @@
17
notebook_path = os.getenv("INPUT_NOTEBOOK_PATH")
18
model_path = os.getenv("INPUT_MODEL_PATH")
19
upload_path = os.getenv("INPUT_ALGORITHMIA_UPLOADPATH")
20
- git_host = os.getenv("INPUT_GIT_HOST")
+ algorithmia_api_addr = os.getenv("INPUT_ALGORITHMIA_API")
21
22
error_template_str = "Field '{}' not defined in workflow file. Please check your workflow configuration"
23
if not algorithmia_api_key:
@@ -40,7 +40,7 @@
40
41
algorithmia_deployer = algorithmia_deployer.AlgorithmiaDeployer(
42
api_key=algorithmia_api_key,
43
- git_host=git_host,
+ api_address=algorithmia_api_addr,
44
username=algorithmia_username,
45
algo_name=algorithmia_algo_name,
46
model_path=model_path,
0 commit comments