-
Notifications
You must be signed in to change notification settings - Fork 62
Add environment variables #94
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
Add environment variables #94
Conversation
(win22 is just a guess, at this moment)
I'm going to break this into 2 commits, since one of them is basically code maintenance and pollutes the revision. |
@@ -6,14 +6,16 @@ Set-Location $Env:RUNNER_TEMP | |||
|
|||
$FILE_INPUT="gleam-${VSN}-windows-64bit.zip" | |||
$FILE_OUTPUT="gleam.zip" | |||
$DIR_FOR_BIN=".setup-beam/gleam/bin" | |||
$DIR_FOR_BIN=".setup-beam/gleam" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The tweaking of bin
, here, was basically for consistency with the other outputs (otherwise we'd have to attach the bin
to Gleam's base folder).
70a59a5 basically adds a lot of |
Rebased on top of |
This is now Ok, after the rebase. Merging... |
This introduces some env. variables to the run, namely the ones identified in the
README.md
:INSTALL_DIR_FOR_ELIXIR
: base folder for Erlang/OTPINSTALL_DIR_FOR_GLEAM
: base folder for ElixirINSTALL_DIR_FOR_OTP
: base folder for GleamINSTALL_DIR_FOR_REBAR3
: base folder forrebar3
and hopefully it closes #89 (still waiting on a comment/test by @samaaron)