Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/technicallyjosh/next-version-action
Get the next version using semantic versioning
https://github.com/technicallyjosh/next-version-action
Last synced: about 1 month ago
JSON representation
Get the next version using semantic versioning
- Host: GitHub
- URL: https://github.com/technicallyjosh/next-version-action
- Owner: technicallyjosh
- License: mit
- Created: 2022-09-24T17:39:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-08T23:53:19.000Z (over 1 year ago)
- Last Synced: 2024-09-16T23:50:09.093Z (4 months ago)
- Language: TypeScript
- Size: 1.03 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Next Version Action
A simple GitHub action to generate a next version via semantic versioning.
## Example Usage
```yaml
steps:
- name: Next Version
id: version
uses: technicallyjosh/next-version-action@v1
with:
version: v1.0.0
- name: Do Something
run: echo "${{ steps.version.outputs.next_version }}"
```## Inputs
- `version` - The version string to get the next version from.
- `type` (optional) - Release type for incrementing the version. major, minor,
or patch.## Outputs
- `next_version`
- `next_version_number`