ruby-build-action
ruby-build-action copied to clipboard
Set up your GitHub Actions workflow with a specific version of Ruby (by using ruby-build)
Getting the following error running on a self-hosted ubuntu vm. ``` Run clupprich/[email protected] ##[error]The process 'git' failed with exit code 128 Run clupprich/[email protected] Installing ruby-build sudo apt-get -qq install autoconf...
Ruby 2.3.3 on Ubuntu 18.04 is required `libssl1.0-dev`, but in your code, use latest-version libssl-dev. Ref: https://github.com/rvm/rvm/issues/4357
The README shows: ```yml - name: Print version run: ${{ steps.ruby.outputs.ruby-path }} --version ``` Is there a reason to use `${{ steps.ruby.outputs.ruby-path }} --version` instead of just `ruby --version`? It...