diff --git a/.github/workflows/fetch-release.yml b/.github/workflows/fetch-release.yml index 703d3ab..f94af20 100644 --- a/.github/workflows/fetch-release.yml +++ b/.github/workflows/fetch-release.yml @@ -25,8 +25,8 @@ jobs: id: fetch_release run: | latest_release=$(curl -s https://api.github.com/repos/Vita3K/Vita3K/releases/latest) - echo "tag_name=$(echo $latest_release | jq -r .tag_name)" - echo "release_body=$(echo $latest_release | jq -r .body)" + tag_name="$(echo $latest_release | jq -r .tag_name)" + release_body="$(echo $latest_release | jq -r .body)" # fetching assets mkdir -p artifacts @@ -35,11 +35,11 @@ jobs: done release_name=$(echo $latest_release | jq -r .body | grep -oP 'Vita3K Build: \d+' | sed 's/Vita3K Build: /Vita3K Build /') - echo "release_name=$release_name" - commit_hash=$(echo $latest_release | jq -r .body | grep -oP 'corresponding commit \K[0-9a-f]{40}') + release_name="$release_name" + + commit_hash=$(echo $latest_release | jq -r .body | grep -oP 'Corresponding commit: \K[0-9a-f]{40}') if [ -n "$commit_hash" ]; then - release_body=$(echo $latest_release | jq -r .body | sed "s/corresponding commit $commit_hash/corresponding commit https:\/\/github.com\/Vita3K\/Vita3K\/commit\/$commit_hash/") - echo "release_body=$release_body" + release_body+="\n\nCorresponding commit: [$commit_hash](https://github.com/Vita3K/Vita3K/commit/$commit_hash)" fi echo "tag_name=$tag_name" >> $GITHUB_ENV