-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow specifying install path #15
Comments
I attempted to work around by putting these actions before |
Just use a |
I too would like this as a feature: as-is, |
Hence why all my projects have Come to think of it, the default path should probably be somewhere in the runner's home directory and not in the project Git workspace at all. |
I feel like the default should really be a folder outside of |
Yeah, I think will be great allow to set the installation path |
* ci: install lua, luarocks, luacheck and neovim * chore: add gitignore This is necessary due to leafo/gh-actions-lua installing lua and luarocks in working directory (see 1) which causes peter-evans/create-pull-request to pick them up as wanted changes. 1) leafo/gh-actions-lua#15
I would like to use the resulting lua libraries in a CMake project. Right now this appears to install in whatever the current working directory is, which cannot be set for a uses action. It's actually ending up in the checkout path for my repo which is causing other issues for my file formatting scans.
It would be nice to either provide the directory e.g. with: installPath=${MY_PATH} or to expose the install path somehow to the parent action.
The text was updated successfully, but these errors were encountered: