From 1c6699b17aafb854a8e36db1930696b9f9588dba Mon Sep 17 00:00:00 2001 From: Asanga Date: Tue, 8 Feb 2022 14:40:16 +1100 Subject: [PATCH 1/2] Fixing the outputs to match with README --- action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 6eff90c..35dd9c6 100644 --- a/action.yml +++ b/action.yml @@ -20,12 +20,18 @@ inputs: default: 'patch' outputs: - current_version: + current-version: description: 'Current normal version detected' value: ${{ steps.version-lookup.outputs.current-version }} + current-v-version: + description: 'Current normal version detected, prefixed with a `v` charatcter' + value: v${{ steps.version-lookup.outputs.current-version }} version: description: 'Incremented version calculated' value: ${{ steps.version-increment.outputs.version }} + v-version: + description: 'Incremented version calculated, prefixed with a `v` charatcter' + value: v${{ steps.version-increment.outputs.version }} runs: using: "composite" From ee28762c5b3fdae69b39112a55653546c8b1cd04 Mon Sep 17 00:00:00 2001 From: Phil Jay Date: Tue, 8 Feb 2022 14:52:41 +1100 Subject: [PATCH 2/2] Update README for next version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f560a54..8a682b0 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ uses: actions/checkout@v2 - name: Get next version - uses: reecetech/version-increment@2021.11.2 + uses: reecetech/version-increment@2022.2.2 id: version with: scheme: semver