We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76bd3fe commit 2306620Copy full SHA for 2306620
.github/workflows/cli_cd.yaml
@@ -136,9 +136,8 @@ jobs:
136
artifacts/char-${{ needs.compute-version.outputs.version }}-x86_64-apple-darwin.tar.xz
137
- id: artifacts
138
run: |
139
- TARBALLS=$(ls artifacts/*.tar.xz | tr '\n' ',')
140
- CHECKSUMS=$(ls artifacts/*.sha256 | tr '\n' ',')
141
- echo "list=${TARBALLS}${CHECKSUMS}" >> $GITHUB_OUTPUT
+ LIST=$(ls artifacts/*.tar.xz artifacts/*.sha256 | paste -sd,)
+ echo "list=$LIST" >> $GITHUB_OUTPUT
142
- id: release-body
143
env:
144
VERSION: ${{ needs.compute-version.outputs.version }}
0 commit comments