Hey @zemuldo thanks for creating this! I have a use-case where i checkout a repo inside a folder under root - say folder/. So the dir structure in github action HOME dir looks something like this:
GITHUB_ACTION_HOME:
- folder (folder is not a git repo)
- git repo (which consists of secret that needs to be unlocked)
I tried cd'ing into folder before calling this action, for git-crypt-unlock to run. However i'm getting this error:
fatal: not a git repository (or any parent up to mount point /github)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
git-crypt: Error: 'git status' failed - is this a Git repository?
I was previously getting the same error when I was not cd'ing into folder before calling this action, so then it was understandable. But after being in the correct path as well, it gives the exact same error as earlier. Is this a bug? Can you please help what can be done here to fix this? @zemuldo
Hey @zemuldo thanks for creating this! I have a use-case where i checkout a repo inside a folder under root - say
folder/. So the dir structure in github action HOME dir looks something like this:I tried cd'ing into
folderbefore calling this action, for git-crypt-unlock to run. However i'm getting this error:I was previously getting the same error when I was not cd'ing into
folderbefore calling this action, so then it was understandable. But after being in the correct path as well, it gives the exact same error as earlier. Is this a bug? Can you please help what can be done here to fix this? @zemuldo