diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 2db3f36d..8b0f3e0f 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -142,11 +142,11 @@ jobs: # Export the commits list to the GitHub environment echo "COMMITS=$COMMITS" >> $GITHUB_ENV - - name: Extract XML Description - uses: Mudlet/xmlstarlet-action@master - id: extract-description - with: - args: sel -t -v "/component/releases/release[1]/description//text()" ./net.retrodeck.retrodeck.appdata.xml + # - name: Extract XML Description + # uses: Mudlet/xmlstarlet-action@master + # id: extract-description + # with: + # args: sel -t -v "/component/releases/release[1]/description//text()" ./net.retrodeck.retrodeck.appdata.xml # Generate Release Body - name: Generate release body text @@ -159,31 +159,21 @@ jobs: RELEASE_BODY+="## Commits since last release\n" RELEASE_BODY+="$COMMITS\n\n" - raw_description="${{ steps.extract-description.outputs.result }}" - - echo "[DEBUG] CHECKPOINT 3" + #raw_description="${{ steps.extract-description.outputs.result }}" # Convert
tags to markdown headers using sed markdown_description=$(echo "$raw_description" | sed -e 's|
|\n### |g' -e 's|
||g') - echo "[DEBUG] CHECKPOINT 4" - # Convert