From e654c7f3f20c218d0b24fe30f78a3df79bb41823 Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Fri, 5 May 2023 16:54:19 +0100 Subject: [PATCH] [ACA-4646] fix versioning for GA --- .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 fde7316a8..1251349d3 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}.${{ github.run_id }}" + NEW_LIBRARY_VERSION="${VERSION_IN_PACKAGE_JSON}-${{ github.run_id }}" fi ${{ github.action_path }}/update-lib-versions.sh "$NEW_LIBRARY_VERSION" "${{ inputs.dry-run }}"