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
b21fa6a78f
commit
c82e00d106
15
.github/workflows/build.yml
vendored
15
.github/workflows/build.yml
vendored
@ -34,16 +34,18 @@ jobs:
|
|||||||
- name: Prepare Artifact
|
- name: Prepare Artifact
|
||||||
run: |
|
run: |
|
||||||
mkdir -p artifacts
|
mkdir -p artifacts
|
||||||
find target -name '*.jar' ! -name 'original-*.jar' -exec cp {} artifacts/plugin.jar \;
|
cp target/${{ env.PLUGIN_FILE }}-*.jar artifacts/${{ env.PLUGIN_FILE }}.jar
|
||||||
echo "JAR_PATH=$(find artifacts -name 'plugin.jar')" >> $GITHUB_ENV
|
echo "JAR_PATH=artifacts/${{ env.PLUGIN_FILE }}.jar" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: plugin.jar
|
name: ${{ env.PLUGIN_FILE }}.jar
|
||||||
path: ${{ env.JAR_PATH }}
|
path: ${{ env.JAR_PATH }}
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
compression: none
|
compression-level: 0
|
||||||
|
if-no-files-found: error
|
||||||
|
overwrite: true
|
||||||
|
|
||||||
- name: Send Discord Notification
|
- name: Send Discord Notification
|
||||||
if: success()
|
if: success()
|
||||||
@ -67,12 +69,13 @@ jobs:
|
|||||||
- name: Download JAR
|
- name: Download JAR
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: plugin.jar
|
name: ${{ env.PLUGIN_FILE }}.jar
|
||||||
|
path: ./
|
||||||
|
|
||||||
- name: Upload Release
|
- name: Upload Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
with:
|
with:
|
||||||
files: plugin.jar
|
files: ${{ env.PLUGIN_FILE }}.jar
|
||||||
fail_on_unmatched_files: true
|
fail_on_unmatched_files: true
|
||||||
|
|
||||||
- name: Send Release Discord Notification
|
- name: Send Release Discord Notification
|
||||||
|
Loading…
x
Reference in New Issue
Block a user