Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.1 KiB

  1. # Getting started
  2. In order to use **semantic-release** you must follows this steps:
  3. - [Install](./installation.md#installation) **semantic-release** in your project
  4. - Configure your Continuous Integration service to [run **semantic-release**](./ci-configuration.md#run-semantic-release-only-after-all-tests-succeeded)
  5. - Configure your Git repository and package manager repository [authentication](ci-configuration.md#authentication) in your Continuous Integration service
  6. - Configure **semantic-release** [options and plugins](./configuration.md#configuration)
  7. Alternatively those steps can be easily done with the [**semantic-release** interactive CLI](https://github.com/semantic-release/cli):
  8. ```bash
  9. npm install -g semantic-release-cli
  10. cd your-module
  11. semantic-release-cli setup
  12. ```
  13. ![dialogue](../../media/semantic-release-cli.png)
  14. See the [semantic-release-cli](https://github.com/semantic-release/cli#what-it-does) documentation for more details.
  15. **Note**: only a limited number of options, CI services and plugins is currently supported by `semantic-release-cli`.