Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reconbot/incremental-release-tags
https://github.com/reconbot/incremental-release-tags
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/reconbot/incremental-release-tags
- Owner: reconbot
- Created: 2018-07-25T18:41:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-29T21:31:12.000Z (about 6 years ago)
- Last Synced: 2024-10-04T06:19:17.776Z (about 1 month ago)
- Language: JavaScript
- Size: 29.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# incremental release tags
I needed a small cli to help create the next version of release tags using an incremting number
# Usage
```
Usage: incremental-release-tags [options] [command]Commands:
help Display help
version Display versionOptions:
-h, --help Output usage information
-p, --prefix [value] prefix of the tag to look for (defaults to "v")
-s, --skip-confirmation skip prompt to deploy to production (disabled by default)
-v, --version Output the version number
``````bash
$ incremental-release-tags --prefix 'v'
# Deploy Production (y/n)
y
# running `git fetch`
# detected previous tag v42
# next tag v43
# pushed sha #123abc to tag v43
# Release: https://github.com/bustle/foobar/releases/tag/v43Changelog: https://github.com/reconbot/incremental-release-tags/compare/v5...v6
- 9370b7b0 Use SSM for all secrets, and move non-secret configs to .js files (#1919)
- 5637b910 Report Migration (#1793)
- 18e3b904 Remove luxon (#1895)
- cc1adb9f add skip async event flag on delete clip for elasticsearch (#1917)
```