We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00df1cd commit 3a0a63cCopy full SHA for 3a0a63c
2 files changed
entrypoint.sh
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
3
# Install the dependencies of this repo to be able to run the notebook
4
-pip install -r main/requirements.txt
+pip install -r requirements.txt
5
6
# Clone the Algorithmia algorithm repository
7
CI_ALGO_DIR=$INPUT_ALGORITHMIA_ALGONAME"_CI"
src/action_main.py
@@ -6,8 +6,9 @@
8
if __name__ == "__main__":
9
- github_workspace = os.getenv("GITHUB_WORKSPACE")
10
- workspace = f"{github_workspace}/main"
+ # github_workspace = os.getenv("GITHUB_WORKSPACE")
+ # workspace = f"{github_workspace}/main"
11
+ workspace = os.getenv("GITHUB_WORKSPACE")
12
git_repo = os.getenv("GITHUB_REPOSITORY")
13
git_ref = os.getenv("GITHUB_REF")
14
commit_SHA = os.getenv("GITHUB_SHA")
0 commit comments