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 3f9c782 commit 4d894d2Copy full SHA for 4d894d2
.github/workflows/cloudpod_release.yml
@@ -9,7 +9,6 @@ on:
9
- 'README.md'
10
branches:
11
- main
12
- - cloudpod_workflow
13
14
permissions:
15
contents: write
.github/workflows/test_cloudpods.yml
@@ -19,7 +19,10 @@ jobs:
19
matrix: ${{ steps.set-matrix.outputs.matrix }}
20
steps:
21
- id: set-matrix
22
- run: echo "::set-output name=matrix::$(gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[].tag_name]')"
+ run: |
23
+ echo "gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[].tag_name]'"
24
+ echo "$(gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[].tag_name]')"
25
+ echo "matrix=$(gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[].tag_name]')" >> $GITHUB_OUTPUT"
26
27
test-pod-release:
28
needs: get-releases
0 commit comments