Currently, the project uses symbolic links which requires special handling when working on Windows.
Firstly you need to make sure that you have mklink
permissions as a user, the easiest way to do this is if you happen to be running Windows 10/Windows 11
is to enable Developer Mode.
After this is done then you can enable symlinks
globally by doing
git config --global core.symlinks true
Alternately if you don't want to enable symlinks
globally you can just selectively enable it when checking
out this repository, i.e.
git clone -c core.symlinks=true [email protected]:sbt/sbt-github-actions.git