Add troubleshooting details
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c66808e..3cb6cbd 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -10,6 +10,9 @@
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
+ - run: |
+ echo "Releases: $(./ci/build-release-matrix)"
+ echo "Projects: $(./ci/build-project-matrix)"
- id: set-matrix
run: |
echo "::set-output name=release::$(./ci/build-release-matrix)"
@@ -23,8 +26,8 @@
strategy:
fail-fast: false
matrix:
- project: ${{ fromJson(needs.build-matrix.outputs.project_matrix) }}
release: ${{ fromJson(needs.build-matrix.outputs.release_matrix) }}
+ project: ${{ fromJson(needs.build-matrix.outputs.project_matrix) }}
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2