Skip to content

Commit 0c32960

Browse files
committed
Appending checkout path to workflow path
1 parent b2987b2 commit 0c32960

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/action_main.py

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

77

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

0 commit comments

Comments
 (0)