From d6ce514cb61f81f0067751874a94fd7e25a70575 Mon Sep 17 00:00:00 2001 From: Stephan Wendel Date: Sun, 18 Feb 2024 14:27:21 +0100 Subject: [PATCH] chore: wip Signed-off-by: Stephan Wendel --- .github/actions/build/action.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index f4ad28065..ace7a23fa 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -26,7 +26,11 @@ runs: steps: - name: Install Dependencies shell: bash - run: sudo apt update; sudo apt install --yes aria2 coreutils jq p7zip-full qemu-user-static zip + run: | + echo "::group::Install dependencies" + sudo apt update + sudo apt install --yes aria2 coreutils jq p7zip-full qemu-user-static zip + echo "::endgroup::" - name: Checkout CustomPiOS uses: actions/checkout@v4 @@ -39,7 +43,7 @@ runs: id: config shell: bash run: | - echo "::set-group::Get Matrix" + echo "::group::Get Matrix" IFS='/' read -r -a array <<< "${{ inputs.config }}" TYPE="${array[0]}" SBC="${array[1]}"