mirror of
https://github.com/KoopaCode/LifeSteal-Core.git
synced 2025-04-03 07:17:32 +00:00
Update build.yml
This commit is contained in:
parent
a6f87c64d9
commit
d1f4414edf
58
.github/workflows/build.yml
vendored
58
.github/workflows/build.yml
vendored
@ -27,6 +27,9 @@ jobs:
|
|||||||
java-version: '17'
|
java-version: '17'
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
cache: maven
|
cache: maven
|
||||||
|
|
||||||
|
- name: Get Version
|
||||||
|
run: echo "PLUGIN_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn -B package --file pom.xml
|
run: mvn -B package --file pom.xml
|
||||||
@ -37,29 +40,21 @@ jobs:
|
|||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.PLUGIN_FILE }}-1.0.0
|
name: ${{ env.PLUGIN_FILE }}-${{ env.PLUGIN_VERSION }}
|
||||||
path: target/${{ env.PLUGIN_FILE }}-1.0.0.jar
|
path: target/${{ env.PLUGIN_FILE }}-${{ env.PLUGIN_VERSION }}.jar
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
|
|
||||||
- name: Send Build Success Notification
|
- name: Send Build Notification
|
||||||
if: success()
|
if: always()
|
||||||
uses: sarisia/actions-status-discord@v1
|
uses: sarisia/actions-status-discord@v1
|
||||||
with:
|
with:
|
||||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
title: "✅ Build Success!"
|
title: "${{ job.status == 'success' && '✅ Build Success!' || '❌ Build Failed!' }}"
|
||||||
description: "A new build of ${{ env.PLUGIN_NAME }} has been created\nCommit: ${{ github.sha }}"
|
description: |
|
||||||
color: 0x00ff00
|
**${{ env.PLUGIN_NAME }} v${{ env.PLUGIN_VERSION }}**
|
||||||
username: "🏺Artifact Build's"
|
By ${{ github.actor }} • ${{ github.sha }}
|
||||||
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
|
${{ github.repository }}
|
||||||
|
color: ${{ job.status == 'success' && '0x00ff00' || '0xff0000' }}
|
||||||
- name: Send Build Failed 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"
|
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"
|
||||||
|
|
||||||
@ -74,32 +69,23 @@ jobs:
|
|||||||
- name: Download Artifact
|
- name: Download Artifact
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ env.PLUGIN_FILE }}-1.0.0
|
name: ${{ env.PLUGIN_FILE }}-${{ env.PLUGIN_VERSION }}
|
||||||
|
|
||||||
- name: Upload Release
|
- name: Upload Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: ${{ env.PLUGIN_FILE }}-1.0.0.jar
|
files: ${{ env.PLUGIN_FILE }}-${{ env.PLUGIN_VERSION }}.jar
|
||||||
fail_on_unmatched_files: true
|
fail_on_unmatched_files: true
|
||||||
|
|
||||||
- name: Send Release Success Notification
|
- name: Send Release Notification
|
||||||
if: success()
|
if: always()
|
||||||
uses: sarisia/actions-status-discord@v1
|
uses: sarisia/actions-status-discord@v1
|
||||||
with:
|
with:
|
||||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
title: "🎉 Release Published!"
|
title: "${{ job.status == 'success' && '🎉 Release Published!' || '❌ Release Failed!' }}"
|
||||||
description: "Version 1.0.0 of ${{ env.PLUGIN_NAME }} is now available!\nDownload: https://github.com/${{ github.repository }}/releases/latest"
|
description: |
|
||||||
color: 0x00ff00
|
**${{ env.PLUGIN_NAME }} v${{ env.PLUGIN_VERSION }}**
|
||||||
username: "🏺Artifact Build's"
|
${{ job.status == 'success' && '➜ https://github.com/${{ github.repository }}/releases/latest' || '' }}
|
||||||
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
|
color: ${{ job.status == 'success' && '0x00ff00' || '0xff0000' }}
|
||||||
|
|
||||||
- name: Send Release Failed Notification
|
|
||||||
if: failure()
|
|
||||||
uses: sarisia/actions-status-discord@v1
|
|
||||||
with:
|
|
||||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
|
||||||
title: "❌ Release Failed!"
|
|
||||||
description: "The release for ${{ env.PLUGIN_NAME }} has failed\nVersion: 1.0.0"
|
|
||||||
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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user