From 32e6ff05d97fade61a913b3293b114858c4e650a Mon Sep 17 00:00:00 2001 From: XargonWan Date: Fri, 10 Jan 2025 09:54:10 +0900 Subject: [PATCH] Update fetch-release workflow to store release details in environment variables --- .github/workflows/fetch-release.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fetch-release.yml b/.github/workflows/fetch-release.yml index 4b5c019..ae618dc 100644 --- a/.github/workflows/fetch-release.yml +++ b/.github/workflows/fetch-release.yml @@ -25,10 +25,19 @@ 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)" >> $GITHUB_ENV - echo "release_body=$(echo $latest_release | jq -r .body)" >> $GITHUB_ENV - echo "assets=$(echo $latest_release | jq -r '.assets[] | .browser_download_url')" >> $GITHUB_ENV + echo "tag_name=$(echo $latest_release | jq -r .tag_name)" + echo "release_body=$(echo $latest_release | jq -r .body)" + echo "assets=$(echo $latest_release | jq -r '.assets[] | .browser_download_url')" release_name=$(echo $latest_release | jq -r .body | grep -oP 'Vita3K Build: \d+') + echo "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" + fi + echo "tag_name=$tag_name" >> $GITHUB_ENV + echo "release_body=$release_body" >> $GITHUB_ENV + echo "assets=$assets" >> $GITHUB_ENV echo "release_name=$release_name" >> $GITHUB_ENV - name: Download assets