mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-22 06:11:31 +03:00
Merge pull request #6435 from urbit/ci-fix-nk-prs
ci: fix prs from `next/kelvin/*`
This commit is contained in:
commit
c78067209a
5
.github/workflows/shared.yml
vendored
5
.github/workflows/shared.yml
vendored
@ -78,9 +78,12 @@ jobs:
|
|||||||
name: run urbit-tests
|
name: run urbit-tests
|
||||||
run: |
|
run: |
|
||||||
cp -RL tests pkg/arvo/tests
|
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')
|
next=$(echo ${{ inputs.next }} | sed 's/[^0-9]//g')
|
||||||
base="https://bootstrap.urbit.org/vere/next/kelvin/${next}"
|
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
|
else
|
||||||
base="https://bootstrap.urbit.org/vere/${{ inputs.pace }}"
|
base="https://bootstrap.urbit.org/vere/${{ inputs.pace }}"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user