mirror of
https://github.com/KoopaCode/NoBullying.git
synced 2025-04-04 15:47:32 +00:00
Update build.yml
This commit is contained in:
parent
d0479e078f
commit
a4f313533c
111
.github/workflows/build.yml
vendored
111
.github/workflows/build.yml
vendored
@ -1,8 +1,4 @@
|
|||||||
name: Build
|
name: Build
|
||||||
env:
|
|
||||||
PLUGIN_NAME: NoBullying
|
|
||||||
PLUGIN_FILE: nobullying
|
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
@ -27,6 +23,12 @@ jobs:
|
|||||||
java-version: '17'
|
java-version: '17'
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
cache: maven
|
cache: maven
|
||||||
|
|
||||||
|
- name: Get Project Info
|
||||||
|
run: |
|
||||||
|
echo "PLUGIN_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV
|
||||||
|
echo "PLUGIN_NAME=$(mvn help:evaluate -Dexpression=project.name -q -DforceStdout)" >> $GITHUB_ENV
|
||||||
|
echo "PLUGIN_FILE=$(mvn help:evaluate -Dexpression=project.artifactId -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,55 +39,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: "Success: ✅ Build Success!"
|
title: "${{ job.status == 'success' && '✅ Build Success!' || '❌ Build Failed!' }}"
|
||||||
description: |
|
description: |
|
||||||
A new build of ${{ env.PLUGIN_NAME }} has been created
|
**${{ env.PLUGIN_NAME }} v${{ env.PLUGIN_VERSION }}**
|
||||||
|
By ${{ github.actor }} • ${{ github.sha }}
|
||||||
**Repository**
|
|
||||||
${{ github.repository }}
|
${{ github.repository }}
|
||||||
|
color: ${{ job.status == 'success' && '0x00ff00' || '0xff0000' }}
|
||||||
**Event - ${{ github.event_name }}**
|
|
||||||
${{ github.sha }} Update build.yml
|
|
||||||
|
|
||||||
**Triggered by**
|
|
||||||
${{ github.actor }}
|
|
||||||
|
|
||||||
**Workflow**
|
|
||||||
Build
|
|
||||||
color: 0x00ff00
|
|
||||||
username: "🏺Artifact Build's"
|
|
||||||
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
|
|
||||||
|
|
||||||
- name: Send Build Failed Notification
|
|
||||||
if: failure()
|
|
||||||
uses: sarisia/actions-status-discord@v1
|
|
||||||
with:
|
|
||||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
|
||||||
title: "Error: ❌ Build Failed!"
|
|
||||||
description: |
|
|
||||||
The build for ${{ env.PLUGIN_NAME }} has failed
|
|
||||||
|
|
||||||
**Repository**
|
|
||||||
${{ github.repository }}
|
|
||||||
|
|
||||||
**Event - ${{ github.event_name }}**
|
|
||||||
${{ github.sha }} Update build.yml
|
|
||||||
|
|
||||||
**Triggered by**
|
|
||||||
${{ github.actor }}
|
|
||||||
|
|
||||||
**Workflow**
|
|
||||||
Build
|
|
||||||
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"
|
||||||
|
|
||||||
@ -100,58 +68,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: "Success: 🎉 Release Published!"
|
title: "${{ job.status == 'success' && '🎉 Release Published!' || '❌ Release Failed!' }}"
|
||||||
description: |
|
description: |
|
||||||
Version 1.0.0 of ${{ env.PLUGIN_NAME }} is now available!
|
**${{ env.PLUGIN_NAME }} v${{ env.PLUGIN_VERSION }}**
|
||||||
|
${{ job.status == 'success' && '➜ https://github.com/${{ github.repository }}/releases/latest' || '' }}
|
||||||
**Download**
|
color: ${{ job.status == 'success' && '0x00ff00' || '0xff0000' }}
|
||||||
https://github.com/${{ github.repository }}/releases/latest
|
|
||||||
|
|
||||||
**Repository**
|
|
||||||
${{ github.repository }}
|
|
||||||
|
|
||||||
**Event - Release**
|
|
||||||
${{ github.ref_name }}
|
|
||||||
|
|
||||||
**Published by**
|
|
||||||
${{ github.actor }}
|
|
||||||
color: 0x00ff00
|
|
||||||
username: "🏺Artifact Build's"
|
|
||||||
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
|
|
||||||
|
|
||||||
- name: Send Release Failed Notification
|
|
||||||
if: failure()
|
|
||||||
uses: sarisia/actions-status-discord@v1
|
|
||||||
with:
|
|
||||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
|
||||||
title: "Error: ❌ Release Failed!"
|
|
||||||
description: |
|
|
||||||
The release for ${{ env.PLUGIN_NAME }} has failed
|
|
||||||
|
|
||||||
**Version**
|
|
||||||
1.0.0
|
|
||||||
|
|
||||||
**Repository**
|
|
||||||
${{ github.repository }}
|
|
||||||
|
|
||||||
**Event - Release**
|
|
||||||
${{ github.ref_name }}
|
|
||||||
|
|
||||||
**Attempted by**
|
|
||||||
${{ github.actor }}
|
|
||||||
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