Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit f8f6d1b

Browse files
dhuangdhuang
dhuang
authored and
dhuang
committed
fix issue
1 parent 4a41c7a commit f8f6d1b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/actions/nm-build-vllm-whl/action.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ outputs:
1414
whl:
1515
description: 'basename for generated whl'
1616
value: ${{ steps.whl.outputs.whl }}
17+
tarball:
18+
description: 'basename for generated tarball'
19+
value: ${{ steps.whl.outputs.tarball }}
20+
artifact:
21+
description: 'artifact name'
22+
value: ${{ steps.whl.outputs.artifact }}
1723
runs:
1824
using: composite
1925
steps:
@@ -34,12 +40,9 @@ runs:
3440
ls -alh dist/
3541
TARBALL_FILEPATH=$(find dist -iname "*nm-vllm*.tar.gz")
3642
TARBALL=$(basename ${TARBALL_FILEPATH})
37-
echo "TARBALL_FILEPATH=${TARBALL_FILEPATH}"
38-
echo "TARBALL=${TARBALL}"
3943
echo "status=${SUCCESS}" >> "$GITHUB_OUTPUT"
4044
echo "tarball=${TARBALL}" >> "$GITHUB_OUTPUT"
4145
ARTIFACT=`echo "${WHL}" | sed 's/.whl//g'`
4246
echo "artifact=${ARTIFACT}" >> "$GITHUB_OUTPUT"
43-
echo "artifact=${ARTIFACT}"
4447
exit ${SUCCESS}
4548
shell: bash

0 commit comments

Comments
 (0)