Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Works around limitation of actions/checkout.
The checkout action disallows cloning a repo anywhere outside GITHUB_WORKSPACE which, in linux, translates into /home/runner/work/Mojee/Mojee. If I just clone both repos in side by side: /home/runner/work/Mojee/Mojee/mojee /home/runner/work/Mojee/Mojee/mojee-dev Then subsequent retype steps won't find 'retype.json' as they rely on having the repo cloned at root. If I just clone the private repo within the actual repo: /home/runner/work/Mojee/Mojee (this repo) /home/runner/work/Mojee/Mojee/mojee-dev (code repo) Then, .md files within the code repo would also become documentation articles in the produced page. Thus, the solution found was just to clone it with an unique name and move it with actual repo name to the desired location. There's a feature request in the checkout action open at actions/checkout#197.
- Loading branch information