11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
cd $RUNNER_TEMP
|
|
|
|
wget -q https://repo.hex.pm/builds/elixir/${1}${2}.zip
|
|
unzip -d .setup-elixir/elixir ${1}${2}.zip
|
|
rm ${1}${2}.zip
|
|
echo "$(pwd)/.setup-elixir/elixir/bin" >> $GITHUB_PATH
|