From ab48a320eda83a151563a70a087d7cbe144341f2 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 17 Jun 2025 16:11:03 -0400 Subject: [PATCH] Update release workflow (#1212) ## Description: Update the release workflow. ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced - [x] I understand that submitting code with bugs that could have been caught through manual testing blocks releases and new features for all contributors Co-authored-by: Scott Anderson <662325+scottanderson@users.noreply.github.com> --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5174389aa..37804ffaf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: 🏷️ Release on: release: types: - - published + - created - edited permissions: {} @@ -16,9 +16,11 @@ jobs: - name: 🖨 Print release info env: RELEASE_TAG_NAME: ${{ github.event.release.tag_name }} + RELEASE_NAME: ${{ github.event.release.name }} RELEASE_BODY: ${{ github.event.release.body }} run: | cat <> $GITHUB_STEP_SUMMARY + Name: ${RELEASE_NAME} Tag: ${RELEASE_TAG_NAME} Changelog: ${RELEASE_BODY}