From f554a09f6b374409c073ef20da46057bbcedb986 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Wed, 13 Nov 2024 17:07:47 +0900 Subject: [PATCH] BUILD_RELEASE: debugging what is causing the exit from generate-body --- .github/workflows/build_release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 8b0f3e0f..02b6dc55 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -34,6 +34,7 @@ jobs: outputs: TAG: ${{ steps.version-tag.outputs.TAG }} RELEASE_BODY: ${{ steps.version-tag.outputs.RELEASE_BODY }} + MAKE_LATEST: ${{ steps.version-tag.outputs.MAKE_LATEST }} steps: # Remove Stuck Mounts @@ -102,6 +103,9 @@ jobs: echo "TAG=$TAG" >> $GITHUB_ENV echo "MAKE_LATEST=$MAKE_LATEST" >> $GITHUB_ENV + echo "TAG=$TAG" >> $GITHUB_OUTPUT + echo "MAKE_LATEST=$MAKE_LATEST" >> $GITHUB_OUTPUT + # backing up manifest in case download fails and hashes must be recalculated - name: Manifest backup run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak" @@ -177,6 +181,7 @@ jobs: # Append markdown content to the release body RELEASE_BODY+="$markdown_description" printf "RELEASE_BODY=%s\n" "$RELEASE_BODY" >> $GITHUB_ENV + printf "RELEASE_BODY=%s\n" "$RELEASE_BODY" >> $GITHUB_OUTPUT echo "[DEBUG] CHECKPOINT 8"