From c571e6f49b3ff41fc4808474ecb66212b24f0a98 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Wed, 25 Sep 2024 23:14:35 +0100 Subject: [PATCH] Simplify json filter --- .github/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcc63ce92..3c036e944 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -205,13 +205,8 @@ jobs: id: get run: | json_file="./deskflow/.github/workflows/ci-linux.json" - { - echo "json=<> $GITHUB_OUTPUT - - cat $GITHUB_OUTPUT + json=$(cat $json_file) + echo "json=$(echo $json)" >> $GITHUB_OUTPUT linux: needs: linux-matrix