From b072607d2e32cc1e2bd12eff5859e3ae80950d82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20H=C3=A5kon?= <55088511+torhakon@users.noreply.github.com> Date: Fri, 20 Dec 2024 12:38:15 +0100 Subject: [PATCH] Fix issue in bash command --- .github/workflows/ciCreatePlatformPool.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ciCreatePlatformPool.yml b/.github/workflows/ciCreatePlatformPool.yml index a596e3b..a63ed21 100644 --- a/.github/workflows/ciCreatePlatformPool.yml +++ b/.github/workflows/ciCreatePlatformPool.yml @@ -90,7 +90,7 @@ jobs: steps: - id: loadFile run: | - content='cat ${{ inputs.poolMatrixDefPath }}' + content=$(cat ${{ inputs.poolMatrixDefPath }}) echo "matrixJson=$content" >> "$GITHUB_OUTPUT" createPool: