mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-24 06:55: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:
|
outputs:
|
||||||
TAG: ${{ steps.version-tag.outputs.TAG }}
|
TAG: ${{ steps.version-tag.outputs.TAG }}
|
||||||
RELEASE_BODY: ${{ steps.version-tag.outputs.RELEASE_BODY }}
|
RELEASE_BODY: ${{ steps.version-tag.outputs.RELEASE_BODY }}
|
||||||
|
MAKE_LATEST: ${{ steps.version-tag.outputs.MAKE_LATEST }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# Remove Stuck Mounts
|
# Remove Stuck Mounts
|
||||||
|
@ -102,6 +103,9 @@ jobs:
|
||||||
echo "TAG=$TAG" >> $GITHUB_ENV
|
echo "TAG=$TAG" >> $GITHUB_ENV
|
||||||
echo "MAKE_LATEST=$MAKE_LATEST" >> $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
|
# backing up manifest in case download fails and hashes must be recalculated
|
||||||
- name: Manifest backup
|
- name: Manifest backup
|
||||||
run: "cp ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml ${GITHUB_WORKSPACE}/net.retrodeck.retrodeck.yml.bak"
|
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
|
# Append markdown content to the release body
|
||||||
RELEASE_BODY+="$markdown_description"
|
RELEASE_BODY+="$markdown_description"
|
||||||
printf "RELEASE_BODY=%s\n" "$RELEASE_BODY" >> $GITHUB_ENV
|
printf "RELEASE_BODY=%s\n" "$RELEASE_BODY" >> $GITHUB_ENV
|
||||||
|
printf "RELEASE_BODY=%s\n" "$RELEASE_BODY" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
echo "[DEBUG] CHECKPOINT 8"
|
echo "[DEBUG] CHECKPOINT 8"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue