Home

Awesome

Increment Semantic Version

This is a GitHub action to bump a given semantic version, depending on a given version fragment.

Inputs

current-version

Required The current semantic version you want to increment. (e.g. 3.12.5)

version-fragment

Required The versions fragment you want to increment.

Possible options are [ major | feature | bug | alpha | beta | pre | rc ]

Outputs

next-version

The incremented version.

Example usage

- name: Bump release version
  id: bump_version
  uses: christian-draeger/increment-semantic-version@1.1.0
  with:
    current-version: '2.11.7-alpha.3' # also accepted: 'v2.11.7-alpha.3' | '2.11.7-alpha3'
    version-fragment: 'feature'
- name: Do something with your bumped release version
  run: echo ${{ steps.bump_version.outputs.next-version }}
  # will print 2.12.0
  

input / output Examples

version-fragmentcurrent-versionoutput
major2.11.73.0.0
majorv2.11.73.0.0
major2.11.7-alpha33.0.0
major2.11.7-alpha.33.0.0
feature2.11.72.12.0
feature2.11.7-alpha32.12.0
feature2.11.7-alpha.32.12.0
bug2.11.72.11.8
bug2.11.7-alpha32.11.8
bug2.11.7-alpha.32.11.8
alpha2.11.72.11.7-alpha.1
alpha2.11.7-alpha32.11.7-alpha.4
alpha2.11.7-alpha.32.11.7-alpha.4
beta2.11.72.11.7-beta.1
beta2.11.7-alpha32.11.7-beta.1
beta2.11.7-alpha.32.11.7-beta.1
pre2.11.72.11.7-pre.1
pre2.11.7-alpha32.11.7-pre.1
pre2.11.7-alpha.32.11.7-pre.1
rc2.11.72.11.7-rc.1
rc2.11.7-alpha32.11.7-rc.1
rc2.11.7-alpha.32.11.7-rc.1

License

The scripts and documentation in this project are released under the MIT License