From 5cc9aa2ff72c4f4cedbefc003fb2e798b68ae1c3 Mon Sep 17 00:00:00 2001 From: mauriziovitale Date: Thu, 16 Mar 2023 16:25:59 +0000 Subject: [PATCH] use dot as separator for minor v --- .github/actions/update-library-versions/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/update-library-versions/action.yml b/.github/actions/update-library-versions/action.yml index 61dd03708a..7ad69598f0 100644 --- a/.github/actions/update-library-versions/action.yml +++ b/.github/actions/update-library-versions/action.yml @@ -22,7 +22,7 @@ runs: if [[ ${{ inputs.branch_name }} =~ ^master.*?$ ]] ; then NEW_LIBRARY_VERSION="$VERSION_IN_PACKAGE_JSON" else - NEW_LIBRARY_VERSION="${VERSION_IN_PACKAGE_JSON}-${PR_NUMBER}" + NEW_LIBRARY_VERSION="${VERSION_IN_PACKAGE_JSON}.${PR_NUMBER}" fi ./scripts/gh/update-lib-versions.sh "$NEW_LIBRARY_VERSION" "${{ inputs.dry-run }}"