Skip to content

Commit bf4b02c

Browse files
committed
fixup2
1 parent d53e87a commit bf4b02c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test_cloudpods.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ jobs:
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
run: |
25-
echo "matrix=\"$(gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[].tag_name]')"\" >> $GITHUB_OUTPUT
25+
output=$(gh api repos/$GITHUB_REPOSITORY/releases | jq '[.[].tag_name]')
26+
output=$(echo $output | tr '\n' ' ')
27+
echo "matrix=$output >> $GITHUB_OUTPUT
2628
2729
test-pod-release:
2830
needs: get-releases

0 commit comments

Comments
 (0)