ci: use doqs

This commit is contained in:
Matthew LeVan 2023-03-28 16:21:24 -04:00
parent d8802de44b
commit a037acd8db

View File

@ -78,10 +78,10 @@ jobs:
name: run urbit-tests
run: |
cp -RL tests pkg/arvo/tests
if [[ ${{ inputs.next }} == "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.head_ref }} == "next/kelvin"* ]]; then
elif [[ "${{ github.head_ref }}" == "next/kelvin"* ]]; then
next=$(echo ${{ github.head_ref }} | sed 's/[^0-9]//g')
base="https://bootstrap.urbit.org/vere/next/kelvin/${next}"
else