Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ainame/bitrise-step-rbenv
Un-official Bitrise step library to install a Ruby version via rbenv with the automatic cache path collection for the official Cache-Push step
https://github.com/ainame/bitrise-step-rbenv
Last synced: about 2 months ago
JSON representation
Un-official Bitrise step library to install a Ruby version via rbenv with the automatic cache path collection for the official Cache-Push step
- Host: GitHub
- URL: https://github.com/ainame/bitrise-step-rbenv
- Owner: ainame
- License: mit
- Created: 2021-11-08T23:55:21.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-27T13:18:39.000Z (over 2 years ago)
- Last Synced: 2024-05-01T19:26:51.565Z (8 months ago)
- Language: Shell
- Homepage:
- Size: 11.7 KB
- Stars: 6
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bitrise-step-rbenv
Install a Ruby version you speficy via .ruby-version or step configruation.
This also collects automatically the installed directory path to cache.## How to use this step
If you want to use this step in your project's `bitrise.yml`,
reference it in your `bitrise.yml` with the `git::PUBLIC-GIT-CLONE-URL@TAG` step reference style:```
- git::https://github.com/ainame/[email protected]: {}
```You can find more examples of step reference styles
in the [bitrise CLI repository](https://github.com/bitrise-io/bitrise/blob/master/_examples/tutorials/steps-and-workflows/bitrise.yml#L65).## How to contribute to this Step
1. Fork this repository
2. `git clone` it
3. Create a branch you'll work on
4. To use/test the step just follow the **How to use this Step** section
5. Do the changes you want to
6. Run/test the step before sending your contribution
* You can also test the step in your `bitrise` project, either on your Mac or on [bitrise.io](https://www.bitrise.io)
* You just have to replace the step ID in your project's `bitrise.yml` with either a relative path, or with a git URL format
* (relative) path format: instead of `- original-step-id:` use `- path::./relative/path/of/script/on/your/Mac:`
* direct git URL format: instead of `- original-step-id:` use `- git::https://github.com/user/step.git@branch:`
* You can find more example of alternative step referencing at: https://github.com/bitrise-io/bitrise/blob/master/_examples/tutorials/steps-and-workflows/bitrise.yml
7. Once you're done just commit your changes & create a Pull Request