Skip to content

Commit a766638

Browse files
committed
Export vars to ensure they are picked up by yq
1 parent 9a51690 commit a766638

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update-dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
3535
CHART_VALUES=chart/values.yaml
3636
# Get latest vLLM release tag and replace it in various places
37-
OLD_VLLM_TAG=$(yq '.api.image.version' $CHART_VALUES)
38-
NEW_VLLM_TAG=$(curl -s https://api.github.com/repos/vllm-project/vllm/releases/latest | jq .tag_name | sed s/\"//g)
37+
export OLD_VLLM_TAG=$(yq '.api.image.version' $CHART_VALUES)
38+
export NEW_VLLM_TAG=$(curl -s https://api.github.com/repos/vllm-project/vllm/releases/latest | jq .tag_name | sed s/\"//g)
3939
if [[ $OLD_VLLM_TAG != $NEW_VLLM_TAG ]]; then
4040
# Set new release tag output
4141
echo new_vllm_tag=$NEW_VLLM_TAG >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)