From d7dde712eea8d9d2657d63460b49636b96ea9e06 Mon Sep 17 00:00:00 2001 From: Stephan Wendel Date: Mon, 19 Feb 2024 22:08:28 +0100 Subject: [PATCH] chore: wip Signed-off-by: Stephan Wendel --- .github/actions/build/action.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 6b3d86950..fed2c19f0 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -47,8 +47,8 @@ runs: IFS='/' read -r -a array <<< "${{ inputs.config }}" TYPE="${array[0]}" SBC="${array[1]}" - echo "TYPE=${TYPE}" >> "$GITHUB_OUTPUT" - echo "SBC=${SBC}" >> "$GITHUB_OUTPUT" + echo "TYPE=${TYPE}" >> $GITHUB_OUTPUT + echo "SBC=${SBC}" >> $GITHUB_OUTPUT if [[ "${TYPE}" = "raspberry" ]]; then TYPE_CONFIG="rpi-defaults.conf" else @@ -106,8 +106,8 @@ runs: copy_config source "${CONFIG_PATH}" - echo "DOWNLOAD_URL_CHECKSUM=${DOWNLOAD_URL_CHECKSUM}" >> "$GITHUB_OUTPUT" - echo "DOWNLOAD_URL_IMAGE=${DOWNLOAD_URL_IMAGE}" >> "$GITHUB_OUTPUT" + echo "DOWNLOAD_URL_CHECKSUM=${DOWNLOAD_URL_CHECKSUM}" >> $GITHUB_OUTPUT + echo "DOWNLOAD_URL_IMAGE=${DOWNLOAD_URL_IMAGE}" >> $GITHUB_OUTPUT if [[ "${TYPE}" != "raspberry" ]]; then base_zip_img_helper fi @@ -118,6 +118,7 @@ runs: } main + echo "::endgroup::" - name: Base Image Checksum id: checksum