Skip to content

Commit e81e932

Browse files
committed
Reverted all changes from Dec28
1 parent e5341ba commit e81e932

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
cd $GITHUB_WORKSPACE/main
3+
#cd $GITHUB_WORKSPACE/main
44

55
ls -al
66

src/algorithmia_deployer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ def __init__(
1717
self.model_path = model_path
1818
self.workspace_path = workspace_path
1919

20-
# self.model_full_path = f"{workspace_path}/{model_path}"
21-
self.model_full_path = model_path
20+
self.model_full_path = f"{workspace_path}/{model_path}"
21+
# self.model_full_path = model_path
2222

2323
def upload_and_link_algo_model(
2424
self, upload_path, git_repo, git_ref, commit_SHA, commit_msg

src/notebook_executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
class NotebookExecutor:
88
def __init__(self, workspace_path, notebook_path):
99
self.workspace_path = workspace_path
10-
# self.notebook_full_path = f"{workspace_path}/{notebook_path}"
11-
self.notebook_full_path = notebook_path
10+
self.notebook_full_path = f"{workspace_path}/{notebook_path}"
11+
# self.notebook_full_path = notebook_path
1212

1313
def run(self):
1414
if os.path.exists(self.notebook_full_path):

0 commit comments

Comments
 (0)