mirror of
https://github.com/reecetech/version-increment.git
synced 2025-12-21 22:45:43 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
40611bca96 | ||
|
|
ddfcb5bc04 | ||
|
|
3d00642def | ||
|
|
827489c005 | ||
|
|
ee28762c5b | ||
|
|
1c6699b17a |
@@ -9,7 +9,7 @@
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Get next version
|
- name: Get next version
|
||||||
uses: reecetech/version-increment@2021.11.2
|
uses: reecetech/version-increment@2022.2.3
|
||||||
id: version
|
id: version
|
||||||
with:
|
with:
|
||||||
scheme: semver
|
scheme: semver
|
||||||
|
|||||||
@@ -20,12 +20,18 @@ inputs:
|
|||||||
default: 'patch'
|
default: 'patch'
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
current_version:
|
current-version:
|
||||||
description: 'Current normal version detected'
|
description: 'Current normal version detected'
|
||||||
value: ${{ steps.version-lookup.outputs.current-version }}
|
value: ${{ steps.version-lookup.outputs.current-version }}
|
||||||
|
current-v-version:
|
||||||
|
description: 'Current normal version detected, prefixed with a `v` charatcter'
|
||||||
|
value: ${{ steps.version-lookup.outputs.current-v-version }}
|
||||||
version:
|
version:
|
||||||
description: 'Incremented version calculated'
|
description: 'Incremented version calculated'
|
||||||
value: ${{ steps.version-increment.outputs.version }}
|
value: ${{ steps.version-increment.outputs.version }}
|
||||||
|
v-version:
|
||||||
|
description: 'Incremented version calculated, prefixed with a `v` charatcter'
|
||||||
|
value: ${{ steps.version-increment.outputs.v-version }}
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
|
|||||||
Reference in New Issue
Block a user