Skip to content

Commit 3a0a63c

Browse files
committed
Reverted all changes from Dec28
1 parent 00df1cd commit 3a0a63c

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

entrypoint.sh

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

33
# Install the dependencies of this repo to be able to run the notebook
4-
pip install -r main/requirements.txt
4+
pip install -r requirements.txt
55

66
# Clone the Algorithmia algorithm repository
77
CI_ALGO_DIR=$INPUT_ALGORITHMIA_ALGONAME"_CI"

src/action_main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66

77

88
if __name__ == "__main__":
9-
github_workspace = os.getenv("GITHUB_WORKSPACE")
10-
workspace = f"{github_workspace}/main"
9+
# github_workspace = os.getenv("GITHUB_WORKSPACE")
10+
# workspace = f"{github_workspace}/main"
11+
workspace = os.getenv("GITHUB_WORKSPACE")
1112
git_repo = os.getenv("GITHUB_REPOSITORY")
1213
git_ref = os.getenv("GITHUB_REF")
1314
commit_SHA = os.getenv("GITHUB_SHA")

0 commit comments

Comments
 (0)