From 3d00642def073c3403930fd022f57cca6a408d98 Mon Sep 17 00:00:00 2001 From: Asanga Date: Tue, 8 Feb 2022 15:06:28 +1100 Subject: [PATCH] Using v-* outputs in favor of string manipulation --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 35dd9c6..e157f87 100644 --- a/action.yml +++ b/action.yml @@ -25,13 +25,13 @@ outputs: 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 }} + value: ${{ steps.version-lookup.outputs.current-v-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 }} + value: ${{ steps.version-increment.outputs.v-version }} runs: using: "composite"