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 22eebbb commit d53e87aCopy full SHA for d53e87a
.github/workflows/test_cloudpods.yml
@@ -22,14 +22,14 @@ 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
+ echo "matrix=\"$(gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[].tag_name]')"\" >> $GITHUB_OUTPUT
26
27
test-pod-release:
28
needs: get-releases
29
runs-on: ubuntu-latest
30
strategy:
31
matrix:
32
- tag: ${{ fromJson(needs.get-releases.outputs.matrix) }}
+ tag: ${{ needs.get-releases.outputs.matrix }}
33
db: ['mariadb', 'mysql']
34
steps:
35
- name: Start LocalStack Default
0 commit comments