We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want make use of setting environment variables through mise, attempting to replace direnv in simple cases at least.
direnv
Unfortunately, the action does not export the variables included in the configuration:
Example config:
Example workflow: The build subsequently fails because changie doesn't find its config.
The text was updated successfully, but these errors were encountered:
Workaround:
- uses: jdx/mise-action@v2 with: install: false # we only need env - name: Load mise env run: | mise env -s bash \ | grep -v 'export PATH=' \ | cut -d' ' -f2 \ >> "$GITHUB_ENV"
Sorry, something went wrong.
this is painful, should probably be fixed under an option
No branches or pull requests
I want make use of setting environment variables through mise, attempting to replace
direnv
in simple cases at least.Unfortunately, the action does not export the variables included in the configuration:
Example config:
Example workflow:
The build subsequently fails because changie doesn't find its config.
The text was updated successfully, but these errors were encountered: