mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-23 22:45:38 +00:00
BUILD_RELEASE: debugging what is causing the exit from generate-body
This commit is contained in:
parent
95adc04e42
commit
f554a09f6b
5
.github/workflows/build_release.yml
vendored
5
.github/workflows/build_release.yml
vendored
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue