Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
Signed-off-by: Stephan Wendel <[email protected]>
  • Loading branch information
KwadFan committed Feb 19, 2024
1 parent 15dfda9 commit d7dde71
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -118,6 +118,7 @@ runs:
}
main
echo "::endgroup::"
- name: Base Image Checksum
id: checksum
Expand Down

0 comments on commit d7dde71

Please sign in to comment.