-
I'm looking for a way to append all of the env vars defined within Is there a way to achieve this? |
Beta Was this translation helpful? Give feedback.
Answered by
dudicoco
Dec 8, 2024
Replies: 1 comment 3 replies
-
I think this should work: mise env | grep -v "^export PATH" >> "$GITHUB_ENV"
mise bin-paths >> "$GITHUB_PATH" |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ended up with this
"$GITHUB_PATH"
was not sufficient as the runner's PATH took precedence, so my venv bins (yamllint) were overriden with the runner's bins.