From 8cefa8e11686038bb3249b4ad4a5a435a8644936 Mon Sep 17 00:00:00 2001 From: Andy Baker Date: Sat, 14 Dec 2024 11:26:04 +0000 Subject: [PATCH] Do not use "#" in build names See https://github.com/icosa-foundation/open-brush/pull/796 [CI BUILD] --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d22599a7..8d42a864 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -148,7 +148,7 @@ jobs: else if [[ ${{ github.ref }} == refs/pull/* ]] then - DESCRIPTION="PR#$(echo ${{ github.ref }} | sed -e 's#refs/pull/##' -e 's#/merge##')" + DESCRIPTION="PR$(echo ${{ github.ref }} | sed -e 's#refs/pull/##' -e 's#/merge##')" elif [[ ${{ github.ref }} == refs/heads/* ]] then DESCRIPTION="$(echo ${{ github.ref }} | sed -e 's#refs/heads/##')"