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
db8aa59c07
commit
d5b12ee272
50
.github/workflows/build.yml
vendored
50
.github/workflows/build.yml
vendored
@ -32,6 +32,32 @@ jobs:
|
||||
with:
|
||||
name: NoBullying
|
||||
path: target/nobullying-*.jar
|
||||
compression-level: 0 # No compression
|
||||
retention-days: 5 # Optional: reduce storage time
|
||||
|
||||
- name: Send Discord Notification
|
||||
if: success()
|
||||
uses: sarisia/actions-status-discord@v1
|
||||
with:
|
||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||
title: "New Build Available!"
|
||||
description: "A new build of NoBullying has been created"
|
||||
color: 0x00ff00
|
||||
username: "🏺Artifact Build's"
|
||||
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
|
||||
fields: |
|
||||
[
|
||||
{
|
||||
"name": "Version",
|
||||
"value": "${{ github.ref_name }}",
|
||||
"inline": true
|
||||
},
|
||||
{
|
||||
"name": "Commit",
|
||||
"value": "${{ github.sha }}",
|
||||
"inline": true
|
||||
}
|
||||
]
|
||||
|
||||
# Create release with artifacts when a release is created
|
||||
release:
|
||||
@ -51,3 +77,27 @@ jobs:
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: nobullying-*.jar
|
||||
|
||||
- name: Send Release Discord Notification
|
||||
if: success()
|
||||
uses: sarisia/actions-status-discord@v1
|
||||
with:
|
||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||
title: "🎉 New Release Published!"
|
||||
description: "Version ${{ github.ref_name }} of NoBullying has been released"
|
||||
color: 0x00ff00
|
||||
username: "🏺Artifact Build's"
|
||||
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
|
||||
fields: |
|
||||
[
|
||||
{
|
||||
"name": "Version",
|
||||
"value": "${{ github.ref_name }}",
|
||||
"inline": true
|
||||
},
|
||||
{
|
||||
"name": "Download",
|
||||
"value": "[Click Here](https://github.com/${{ github.repository }}/releases/latest)",
|
||||
"inline": true
|
||||
}
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user