From 6c5f44d7be009b69e8ef6948d7e579c9ebaf1b48 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sat, 8 Jun 2024 20:34:11 -0400 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 691f23e..826d8ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@v4 - name: Setup Release - id: setup_release + id: setup-release uses: LizardByte/setup-release-action@v2024.608.210128 with: github_token: ${{ secrets.GITHUB_TOKEN }} @@ -30,14 +30,15 @@ jobs: - name: Create/Update GitHub Release if: >- (github.event_name == 'push' && github.ref == 'refs/heads/master') && - steps.setup_release.outputs.publish_release == 'true' + steps.setup-release.outputs.publish_release == 'true' uses: LizardByte/create-release-action@v2024.608.160245 with: allowUpdates: true - artifacts: "" + artifacts: '' + body: ${{ steps.setup-release.outputs.release_body }} discussionCategory: announcements - generateReleaseNotes: true - name: ${{ steps.setup_release.outputs.release_tag }} + generateReleaseNotes: ${{ steps.setup-release.outputs.release_generate_notes }} + name: ${{ steps.setup-release.outputs.release_tag }} prerelease: true - tag: ${{ steps.setup_release.outputs.release_tag }} + tag: ${{ steps.setup-release.outputs.release_tag }} token: ${{ secrets.GH_BOT_TOKEN }}