https://github.com/nicolas-fricke/bitrise-step-generate-text-file
Step for the Bitrise mobile continuous deploy service to generate "What's New" files that can be used in Google Play deploys
https://github.com/nicolas-fricke/bitrise-step-generate-text-file
android bitrise bitrise-step google-play-store
Last synced: 6 months ago
JSON representation
Step for the Bitrise mobile continuous deploy service to generate "What's New" files that can be used in Google Play deploys
- Host: GitHub
- URL: https://github.com/nicolas-fricke/bitrise-step-generate-text-file
- Owner: nicolas-fricke
- License: mit
- Created: 2017-02-09T19:30:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-09-23T13:27:47.000Z (about 4 years ago)
- Last Synced: 2025-03-24T11:38:15.217Z (7 months ago)
- Topics: android, bitrise, bitrise-step, google-play-store
- Language: Shell
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bitrise Step: Generate Text File
This step lets you generate a dynamic text file in your Bitrise workflow.
## How to use this Step
Can be run directly with the [bitrise CLI](https://github.com/bitrise-io/bitrise),
just `git clone` this repository, `cd` into it's folder in your Terminal/Command Line
and call `bitrise run generate-text-file`.*Check the `bitrise.yml` file for required inputs which have to be
added to your `.bitrise.secrets.yml` file!*Step by step:
1. Open up your Terminal / Command Line
2. `git clone` the repository
3. `cd` into the directory of the step (the one you just `git clone`d)
4. Just run this step with the [bitrise CLI](https://github.com/bitrise-io/bitrise): `bitrise run generate-text-file`## 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