From 7abd7a5d1a4793343762fc5cc40a22730bd8482b Mon Sep 17 00:00:00 2001 From: Luca LeBlanc <67206487+yodaluca23@users.noreply.github.com> Date: Sun, 6 Oct 2024 19:21:12 -0500 Subject: [PATCH] Update Build and Release.yml --- .github/workflows/Build and Release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Build and Release.yml b/.github/workflows/Build and Release.yml index e36ac83..7f84ab2 100644 --- a/.github/workflows/Build and Release.yml +++ b/.github/workflows/Build and Release.yml @@ -459,7 +459,7 @@ jobs: - name: Fetch the first bullet point from the EeveeSpotify release changelog id: fetch-changelog run: | - BULLET_POINT=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/tags/${{ env.EEVEETAG }} | jq -r '.body' | sed -n 's/^[[:space:]]*[*-+] //p; s/^[[:space:]]* //p' | grep -v '^$' | head -n 1) + BULLET_POINT=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/repos/${{ env.EEVEEREPO }}/releases/tags/${{ env.EEVEETAG }} | jq -r '.body' | sed -n 's/^[[:space:]]*[*-+] //p; s/^[[:space:]]* //p' | grep -v '^$' | head -n 1 | awk 'tolower($0) ~ /localization/ {print "Improved localizations."; next} {print}') echo "BULLET_POINT=$BULLET_POINT" >> $GITHUB_ENV - name: Set ALTSTORECHANGELOG environment variable