Skip to content

Commit 2306620

Browse files
committed
update cli_cd
Signed-off-by: Yujong Lee <yujonglee.dev@gmail.com>
1 parent 76bd3fe commit 2306620

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/cli_cd.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,8 @@ jobs:
136136
artifacts/char-${{ needs.compute-version.outputs.version }}-x86_64-apple-darwin.tar.xz
137137
- id: artifacts
138138
run: |
139-
TARBALLS=$(ls artifacts/*.tar.xz | tr '\n' ',')
140-
CHECKSUMS=$(ls artifacts/*.sha256 | tr '\n' ',')
141-
echo "list=${TARBALLS}${CHECKSUMS}" >> $GITHUB_OUTPUT
139+
LIST=$(ls artifacts/*.tar.xz artifacts/*.sha256 | paste -sd,)
140+
echo "list=$LIST" >> $GITHUB_OUTPUT
142141
- id: release-body
143142
env:
144143
VERSION: ${{ needs.compute-version.outputs.version }}

0 commit comments

Comments
 (0)