diff --git a/.github/workflows/conan-recipe-version.yml b/.github/workflows/conan-recipe-version.yml index c51f07ec80..bdbcee77e1 100644 --- a/.github/workflows/conan-recipe-version.yml +++ b/.github/workflows/conan-recipe-version.yml @@ -80,7 +80,7 @@ jobs: elif [ "${{ github.event_name == 'pull_request' }}" = "true" ]; then # Event triggered by a pull_request echo ${{ github.repository_owner }} | awk '{print "::set-output name=user::"tolower($0)}' - sanitized_branch=$(echo "${{ github.ref_name }}" | egrep -o "^[^/|_]+") + sanitized_branch=$(echo "pr_${{ github.ref_name }}" | egrep -o "^[^/|_]+") echo '::set-output channel=$sanitized_branch' echo '::set-output version=${{ steps.git-tool.outputs.Major }}.${{ steps.git-tool.outputs.Minor }}.${{ steps.git-tool.outputs.Patch }}-${{ steps.git-tool.outputs.PreReleaseLabel }}+${{ steps.git-tool.outputs.BuildMetaData }}' else