We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d53e87a commit bf4b02cCopy full SHA for bf4b02c
.github/workflows/test_cloudpods.yml
@@ -22,7 +22,9 @@ jobs:
22
env:
23
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
run: |
25
- echo "matrix=\"$(gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[].tag_name]')"\" >> $GITHUB_OUTPUT
+ output=$(gh api repos/$GITHUB_REPOSITORY/releases | jq '[.[].tag_name]')
26
+ output=$(echo $output | tr '\n' ' ')
27
+ echo "matrix=$output >> $GITHUB_OUTPUT
28
29
test-pod-release:
30
needs: get-releases
0 commit comments