Skip to content

Commit 77b5826

Browse files
committed
Not switching to main folder anymore
1 parent fb6379d commit 77b5826

2 files changed

Lines changed: 3 additions & 2 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
44

55
# Install the dependencies of this repo to be able to run the notebook
66
pip install -r requirements.txt

src/action_main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
if __name__ == "__main__":
99
github_workspace = os.getenv("GITHUB_WORKSPACE")
10-
workspace = f"{github_workspace}/main"
10+
# workspace = f"{github_workspace}/main"
11+
workspace = 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)