mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 01:11:57 +01:00
37 lines
1.7 KiB
Markdown
37 lines
1.7 KiB
Markdown
# drone-cli
|
|
|
|
Command line client for the Drone continuous integration server.
|
|
|
|
Documentation: https://docs.drone.io/cli
|
|
|
|
## Release procedure
|
|
|
|
Run the changelog generator.
|
|
|
|
```BASH
|
|
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u harness -p drone-cli -t <secret github token>
|
|
```
|
|
|
|
You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.
|
|
|
|
Next we tag the PR's with the fixes or enhancements labels. If the PR does not fufil the requirements, do not add a label.
|
|
|
|
** Before moving on make sure to update the version file `version/version.go`. **
|
|
|
|
Run the changelog generator again with the future version according to semver.
|
|
|
|
```BASH
|
|
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u harness -p drone-cli -t <secret token> --future-release v1.0.0
|
|
```
|
|
|
|
Create your pull request for the release. Get it merged then tag the release.
|
|
|
|
## Community and Support
|
|
[Harness Community Slack](https://join.slack.com/t/harnesscommunity/shared_invite/zt-y4hdqh7p-RVuEQyIl5Hcx4Ck8VCvzBw) - Join the #drone slack channel to connect with our engineers and other users running Drone CI.
|
|
|
|
[Harness Community Forum](https://community.harness.io/) - Ask questions, find answers, and help other users.
|
|
|
|
[Report or Track A Bug](https://community.harness.io/c/bugs/17) - Find a bug? Please report in our forum under Drone Bugs. Please provide screenshots and steps to reproduce.
|
|
|
|
[Events](https://www.meetup.com/harness/) - Keep up to date with Drone events and check out previous events [here](https://www.youtube.com/watch?v=Oq34ImUGcHA&list=PLXsYHFsLmqf3zwelQDAKoVNmLeqcVsD9o).
|