From 585baa91676a3daa720161a142a30b5a35c6b548 Mon Sep 17 00:00:00 2001 From: Matthew LeVan Date: Tue, 28 Mar 2023 15:37:44 -0400 Subject: [PATCH] ci: fix prs from `next/kelvin/*` --- .github/workflows/shared.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/shared.yml b/.github/workflows/shared.yml index 7e51b8f88..94636b078 100644 --- a/.github/workflows/shared.yml +++ b/.github/workflows/shared.yml @@ -78,9 +78,12 @@ jobs: name: run urbit-tests run: | cp -RL tests pkg/arvo/tests - if [[ ${{ inputs.next }} == "next/kelvin/"* || ${{ github.ref }} == "next/kelvin/"* ]]; then + if [[ ${{ inputs.next }} == "next/kelvin/"* ]]; then next=$(echo ${{ inputs.next }} | sed 's/[^0-9]//g') base="https://bootstrap.urbit.org/vere/next/kelvin/${next}" + elif [[ ${{ github.ref }} == "next/kelvin"* ]]; then + next=$(echo ${{ github.ref }} | sed 's/[^0-9]//g') + base="https://bootstrap.urbit.org/vere/next/kelvin/${next}" else base="https://bootstrap.urbit.org/vere/${{ inputs.pace }}" fi