Fix quotes for build-matrix
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index bef4775..c66808e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,8 +12,8 @@
- uses: actions/checkout@v3.0.2
- id: set-matrix
run: |
- echo '::set-output name=release::$(./ci/build-release-matrix)'
- echo '::set-output name=project::$(./ci/build-project-matrix)'
+ echo "::set-output name=release::$(./ci/build-release-matrix)"
+ echo "::set-output name=project::$(./ci/build-project-matrix)"
outputs:
release_matrix: ${{ steps.set-matrix.outputs.release }}
project_matrix: ${{ steps.set-matrix.outputs.project }}