From 7c2ca81ea2ab565f1cdecf81a5a4bf3c6862fcc2 Mon Sep 17 00:00:00 2001 From: Koopa <115321970+KoopaCode@users.noreply.github.com> Date: Fri, 31 Jan 2025 20:46:22 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e7449f..6c1350d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,15 +36,17 @@ jobs: - name: Copy JAR to root run: | - cp target/${{ env.PLUGIN_FILE }}-*.jar ./${{ env.PLUGIN_FILE }}.jar || exit 1 + mkdir artifacts + cp target/${{ env.PLUGIN_FILE }}-*.jar ./artifacts/${{ env.PLUGIN_FILE }}.jar || exit 1 - name: Upload build artifacts uses: actions/upload-artifact@v4 with: name: ${{ env.PLUGIN_FILE }} - path: ${{ env.PLUGIN_FILE }}.jar + path: artifacts/${{ env.PLUGIN_FILE }}.jar compression-level: 0 retention-days: 5 + if-no-files-found: error - name: Send Discord Notification if: success() @@ -69,11 +71,18 @@ jobs: uses: actions/download-artifact@v4 with: name: ${{ env.PLUGIN_FILE }} + path: ./ + + - name: Prepare Release Asset + run: | + ls -la + mv ${{ env.PLUGIN_FILE }}.jar NoBullying-${{ github.ref_name }}.jar - name: Upload release artifacts uses: softprops/action-gh-release@v2 with: - files: ${{ env.PLUGIN_FILE }}.jar + files: NoBullying-${{ github.ref_name }}.jar + fail_on_unmatched_files: true - name: Send Release Discord Notification if: success()