Update build.yml

This commit is contained in:
Koopa 2025-01-31 20:48:40 -05:00
parent 7c2ca81ea2
commit 4c202ff4cb

View File

@ -31,22 +31,14 @@ jobs:
- name: Build with Maven - name: Build with Maven
run: mvn -B package --file pom.xml run: mvn -B package --file pom.xml
- name: Debug directory contents - name: Upload JAR
run: ls -la target/
- name: Copy JAR to root
run: |
mkdir artifacts
cp target/${{ env.PLUGIN_FILE }}-*.jar ./artifacts/${{ env.PLUGIN_FILE }}.jar || exit 1
- name: Upload build artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: ${{ env.PLUGIN_FILE }} name: ${{ env.PLUGIN_FILE }}.jar
path: artifacts/${{ env.PLUGIN_FILE }}.jar path: target/${{ env.PLUGIN_FILE }}-*.jar
compression-level: 0 compression-level: 0
retention-days: 5
if-no-files-found: error if-no-files-found: error
type: file
- name: Send Discord Notification - name: Send Discord Notification
if: success() if: success()
@ -54,7 +46,7 @@ jobs:
with: with:
webhook: ${{ secrets.DISCORD_WEBHOOK }} webhook: ${{ secrets.DISCORD_WEBHOOK }}
title: "New Build Available!" title: "New Build Available!"
description: "A new build of ${{ env.PLUGIN_NAME }} has been created\nCommit: ${{ github.sha }}" description: "A new build of ${{ env.PLUGIN_NAME }} has been created\nCommit: ${{ github.sha }}\nVersion: ${{ github.ref_name }}"
color: 0x00ff00 color: 0x00ff00
username: "🏺Artifact Build's" username: "🏺Artifact Build's"
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
@ -67,21 +59,15 @@ jobs:
contents: write contents: write
steps: steps:
- name: Download build artifacts - name: Download JAR
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with:
name: ${{ env.PLUGIN_FILE }} name: ${{ env.PLUGIN_FILE }}.jar
path: ./
- name: Prepare Release Asset - name: Upload Release
run: |
ls -la
mv ${{ env.PLUGIN_FILE }}.jar NoBullying-${{ github.ref_name }}.jar
- name: Upload release artifacts
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
with: with:
files: NoBullying-${{ github.ref_name }}.jar files: ${{ env.PLUGIN_FILE }}-*.jar
fail_on_unmatched_files: true fail_on_unmatched_files: true
- name: Send Release Discord Notification - name: Send Release Discord Notification
@ -93,4 +79,15 @@ jobs:
description: "A new release of ${{ env.PLUGIN_NAME }} is available\nDownload: https://github.com/${{ github.repository }}/releases/latest" description: "A new release of ${{ env.PLUGIN_NAME }} is available\nDownload: https://github.com/${{ github.repository }}/releases/latest"
color: 0x00ff00 color: 0x00ff00
username: "🏺Artifact Build's" 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" avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"