We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb6379d commit 77b5826Copy full SHA for 77b5826
2 files changed
entrypoint.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-cd $GITHUB_WORKSPACE/main
+cd $GITHUB_WORKSPACE
4
5
# Install the dependencies of this repo to be able to run the notebook
6
pip install -r requirements.txt
src/action_main.py
@@ -7,7 +7,8 @@
7
8
if __name__ == "__main__":
9
github_workspace = os.getenv("GITHUB_WORKSPACE")
10
- workspace = f"{github_workspace}/main"
+ # workspace = f"{github_workspace}/main"
11
+ workspace = 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