You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a project that requires dependencies from conda. As such, I use the setup-miniconda action to create a conda environment and install dependencies.
Unfortunately, that requires specifying the shell to github in order to activate the conda environment:
- name: Do somethingshell: bash -el {0}run: conda info
as far as I can tell however, @actions/exec doesn't support a shell parameter, so the invocation in run.ts here doesn't respect it:
I have a project that requires dependencies from conda. As such, I use the setup-miniconda action to create a conda environment and install dependencies.
Unfortunately, that requires specifying the
shell
to github in order to activate the conda environment:as far as I can tell however,
@actions/exec
doesn't support ashell
parameter, so the invocation in run.ts here doesn't respect it:action/src/run.ts
Line 73 in 17c9f2c
A similar issue came up in another action recently, and a proposed solution is here:
aganders3/headless-gui#5
would be great to support a similar shell input here so that we can use this with conda environments
thanks!
The text was updated successfully, but these errors were encountered: