Skip to content

Commit 4d894d2

Browse files
committed
add debug output
1 parent 3f9c782 commit 4d894d2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/cloudpod_release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
- 'README.md'
1010
branches:
1111
- main
12-
- cloudpod_workflow
1312

1413
permissions:
1514
contents: write

.github/workflows/test_cloudpods.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ jobs:
1919
matrix: ${{ steps.set-matrix.outputs.matrix }}
2020
steps:
2121
- id: set-matrix
22-
run: echo "::set-output name=matrix::$(gh api repos/$GITHUB_REPOSITORY/releases | jq -r '[.[].tag_name]')"
22+
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"
2326
2427
test-pod-release:
2528
needs: get-releases

0 commit comments

Comments
 (0)