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