Update build.yml

This commit is contained in:
Koopa 2025-01-31 21:02:02 -05:00
parent 1dfcf5896c
commit b13c5391c1

View File

@ -31,31 +31,28 @@ jobs:
- name: Build with Maven - name: Build with Maven
run: mvn -B package --file pom.xml run: mvn -B package --file pom.xml
- name: Upload to Release - name: Debug Directory
uses: xresloader/upload-to-github-release@v1 run: ls -la target/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload Artifact
uses: actions/upload-artifact@v4
with: with:
file: "target/${{ env.PLUGIN_FILE }}-*.jar" name: ${{ env.PLUGIN_FILE }}-1.0.0
tags: true path: target/${{ env.PLUGIN_FILE }}-1.0.0.jar
draft: false retention-days: 5
prerelease: false
overwrite: true
update_latest_release: true
verbose: true
- name: Send Discord Notification - name: Send Build Success Notification
if: success() if: success()
uses: sarisia/actions-status-discord@v1 uses: sarisia/actions-status-discord@v1
with: with:
webhook: ${{ secrets.DISCORD_WEBHOOK }} webhook: ${{ secrets.DISCORD_WEBHOOK }}
title: "New Build Available!" title: "✅ Build Success!"
description: "A new build of ${{ env.PLUGIN_NAME }} has been created\nCommit: ${{ github.sha }}\nVersion: ${{ github.ref_name }}" description: "A new build of ${{ env.PLUGIN_NAME }} has been created\nCommit: ${{ github.sha }}"
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"
- name: Send Build Failed Discord Notification - name: Send Build Failed Notification
if: failure() if: failure()
uses: sarisia/actions-status-discord@v1 uses: sarisia/actions-status-discord@v1
with: with:
@ -74,36 +71,35 @@ jobs:
contents: write contents: write
steps: steps:
- name: Download JAR - name: Download Artifact
uses: actions/download-artifact@v4 uses: actions/download-artifact@v4
with: with:
name: ${{ env.PLUGIN_FILE }}.jar name: ${{ env.PLUGIN_FILE }}-1.0.0
path: ./
- name: Upload Release - name: Upload Release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
with: with:
files: ${{ env.PLUGIN_FILE }}.jar files: ${{ env.PLUGIN_FILE }}-1.0.0.jar
fail_on_unmatched_files: true fail_on_unmatched_files: true
- name: Send Release Discord Notification - name: Send Release Success Notification
if: success() if: success()
uses: sarisia/actions-status-discord@v1 uses: sarisia/actions-status-discord@v1
with: with:
webhook: ${{ secrets.DISCORD_WEBHOOK }} webhook: ${{ secrets.DISCORD_WEBHOOK }}
title: "🎉 New Release Published!" title: "🎉 Release Published!"
description: "A new release of ${{ env.PLUGIN_NAME }} is available\nDownload: https://github.com/${{ github.repository }}/releases/latest" description: "Version 1.0.0 of ${{ env.PLUGIN_NAME }} is now 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" avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
- name: Send Build Failed Discord Notification - name: Send Release Failed Notification
if: failure() if: failure()
uses: sarisia/actions-status-discord@v1 uses: sarisia/actions-status-discord@v1
with: with:
webhook: ${{ secrets.DISCORD_WEBHOOK }} webhook: ${{ secrets.DISCORD_WEBHOOK }}
title: "❌ Build Failed!" title: "❌ Release Failed!"
description: "The build for ${{ env.PLUGIN_NAME }} has failed\nCommit: ${{ github.sha }}" description: "The release for ${{ env.PLUGIN_NAME }} has failed\nVersion: 1.0.0"
color: 0xff0000 color: 0xff0000
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"