diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index d9810d370..8d6056f17 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -49,7 +49,7 @@ jobs: sudo apt-get -qq install python3-dev texinfo unzip - name: Install erlang/OTP - uses: erlef/setup-beam@v1.17.2 + uses: erlef/setup-beam@v1 with: otp-version: ${{ env.OTP_VSN }} elixir-version: ${{ env.ELIXIR_VSN }} diff --git a/tools/make-binaries b/tools/make-binaries index d91cd8610..0c63b7c16 100755 --- a/tools/make-binaries +++ b/tools/make-binaries @@ -350,8 +350,8 @@ add_otp_path() then # For github runners to build for non-native systems: # https://github.com/erlef/setup-beam#environment-variables - native_otp_bin="$INSTALL_DIR_FOR_OTP" - native_elixir_bin="$INSTALL_DIR_FOR_ELIXIR" + native_otp_bin="$INSTALL_DIR_FOR_OTP/bin" + native_elixir_bin="$INSTALL_DIR_FOR_ELIXIR/bin" export PATH="$native_elixir_bin:$PATH" fi export PATH="$native_otp_bin:$PATH"