From 1dfcf5896cb3be7285d669e664315d5c16a99ea9 Mon Sep 17 00:00:00 2001 From: Koopa <115321970+KoopaCode@users.noreply.github.com> Date: Fri, 31 Jan 2025 20:57:51 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 34 +++++++++++++++++++++------------- 1 file changed, 21 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95c5197..f88ebd5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,21 +31,18 @@ jobs: - name: Build with Maven run: mvn -B package --file pom.xml - - name: Prepare Artifact - run: | - mkdir -p artifacts - cp target/${{ env.PLUGIN_FILE }}-*.jar artifacts/${{ env.PLUGIN_FILE }}.jar - echo "JAR_PATH=artifacts/${{ env.PLUGIN_FILE }}.jar" >> $GITHUB_ENV - - - name: Upload Artifact - uses: actions/upload-artifact@v4 + - name: Upload to Release + uses: xresloader/upload-to-github-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - name: ${{ env.PLUGIN_FILE }}.jar - path: ${{ env.JAR_PATH }} - retention-days: 5 - compression-level: 0 - if-no-files-found: error + file: "target/${{ env.PLUGIN_FILE }}-*.jar" + tags: true + draft: false + prerelease: false overwrite: true + update_latest_release: true + verbose: true - name: Send Discord Notification if: success() @@ -58,6 +55,17 @@ jobs: username: "🏺Artifact Build's" avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" + - name: Send Build Failed Discord Notification + if: failure() + uses: sarisia/actions-status-discord@v1 + with: + webhook: ${{ secrets.DISCORD_WEBHOOK }} + title: "❌ Build Failed!" + description: "The build for ${{ env.PLUGIN_NAME }} has failed\nCommit: ${{ github.sha }}" + color: 0xff0000 + username: "🏺Artifact Build's" + avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" + release: needs: build if: github.event_name == 'release'