Skip to content

Commit

Permalink
Update cmd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mordamax committed Dec 8, 2024
1 parent 0175f82 commit e2ce43c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/cmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,17 +227,23 @@ jobs:
cat .github/env >> $GITHUB_OUTPUT
if [ -n "$IMAGE_OVERRIDE" ]; then
echo "IMAGE=$IMAGE_OVERRIDE" >> $GITHUB_OUTPUT
IMAGE=$IMAGE_OVERRIDE
echo "IMAGE=$IMAGE" >> $GITHUB_OUTPUT
fi
if [[ $BODY == "/cmd bench"* ]]; then
echo "RUNNER=parity-weights" >> $GITHUB_OUTPUT
RUNNER=parity-weights
echo "RUNNER=$RUNNER" >> $GITHUB_OUTPUT
elif [[ $BODY == "/cmd update-ui"* ]]; then
echo "RUNNER=parity-large" >> $GITHUB_OUTPUT
RUNNER=parity-large
echo "RUNNER=$RUNNER" >> $GITHUB_OUTPUT
else
echo "RUNNER=ubuntu-latest" >> $GITHUB_OUTPUT
RUNNER=ubuntu-latest
echo "RUNNER=$RUNNER" >> $GITHUB_OUTPUT
fi
echo "BODY=$BODY"
echo "RUNNER=$RUNNER"
echo "IMAGE=$IMAGE"
Expand Down

0 comments on commit e2ce43c

Please sign in to comment.