From f2ed0cee41af8a21a6ba9778d5c69ddf173a4431 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 9 Jun 2024 22:02:53 +0000 Subject: [PATCH 1/2] build(deps): bump LizardByte/setup-release-action Bumps [LizardByte/setup-release-action](https://github.com/lizardbyte/setup-release-action) from 2024.520.193857 to 2024.608.210128. - [Release notes](https://github.com/lizardbyte/setup-release-action/releases) - [Commits](https://github.com/lizardbyte/setup-release-action/compare/v2024.520.193857...v2024.608.210128) --- updated-dependencies: - dependency-name: LizardByte/setup-release-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8dd265c..e21511e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -29,7 +29,7 @@ jobs: - name: Setup Release id: setup_release - uses: LizardByte/setup-release-action@v2024.520.193857 + uses: LizardByte/setup-release-action@v2024.608.210128 with: github_token: ${{ secrets.GITHUB_TOKEN }} From 6b6c0166d00ffc5be69c9b57d914f6c61f6333e0 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 9 Jun 2024 18:05:14 -0400 Subject: [PATCH 2/2] Update CI.yml --- .github/workflows/CI.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e21511e..3514370 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,8 +18,9 @@ jobs: name: Setup Release outputs: publish_release: ${{ steps.setup_release.outputs.publish_release }} - release_build: ${{ steps.setup_release.outputs.release_build }} + release_body: ${{ steps.setup_release.outputs.release_body }} release_commit: ${{ steps.setup_release.outputs.release_commit }} + release_generate_release_notes: ${{ steps.setup_release.outputs.release_generate_release_notes }} release_tag: ${{ steps.setup_release.outputs.release_tag }} release_version: ${{ steps.setup_release.outputs.release_version }} runs-on: ubuntu-latest @@ -164,8 +165,9 @@ jobs: with: allowUpdates: false artifacts: "${{ github.workspace }}/dist/*" + body: ${{ needs.setup_release.outputs.release_body }} discussionCategory: announcements - generateReleaseNotes: true + generateReleaseNotes: ${{ needs.setup_release.outputs.release_generate_release_notes }} name: ${{ needs.setup_release.outputs.release_tag }} prerelease: true tag: ${{ needs.setup_release.outputs.release_tag }}