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
c82e00d106
commit
1dfcf5896c
34
.github/workflows/build.yml
vendored
34
.github/workflows/build.yml
vendored
@ -31,21 +31,18 @@ jobs:
|
|||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn -B package --file pom.xml
|
run: mvn -B package --file pom.xml
|
||||||
|
|
||||||
- name: Prepare Artifact
|
- name: Upload to Release
|
||||||
run: |
|
uses: xresloader/upload-to-github-release@v1
|
||||||
mkdir -p artifacts
|
env:
|
||||||
cp target/${{ env.PLUGIN_FILE }}-*.jar artifacts/${{ env.PLUGIN_FILE }}.jar
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
echo "JAR_PATH=artifacts/${{ env.PLUGIN_FILE }}.jar" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
with:
|
||||||
name: ${{ env.PLUGIN_FILE }}.jar
|
file: "target/${{ env.PLUGIN_FILE }}-*.jar"
|
||||||
path: ${{ env.JAR_PATH }}
|
tags: true
|
||||||
retention-days: 5
|
draft: false
|
||||||
compression-level: 0
|
prerelease: false
|
||||||
if-no-files-found: error
|
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
update_latest_release: true
|
||||||
|
verbose: true
|
||||||
|
|
||||||
- name: Send Discord Notification
|
- name: Send Discord Notification
|
||||||
if: success()
|
if: success()
|
||||||
@ -58,6 +55,17 @@ jobs:
|
|||||||
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
|
||||||
|
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"
|
||||||
|
|
||||||
release:
|
release:
|
||||||
needs: build
|
needs: build
|
||||||
if: github.event_name == 'release'
|
if: github.event_name == 'release'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user