mirror of
https://github.com/KoopaCode/LifeSteal-Core.git
synced 2025-04-02 23:07:32 +00:00
Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
4384570419 | ||
|
8faf5079e9 | ||
|
7fbab0d7b1 | ||
|
d1f4414edf | ||
|
a6f87c64d9 | ||
|
ac47f50071 | ||
|
4c0b4be5e3 | ||
|
89c0dcbdc4 | ||
|
7ec29e5fdc | ||
|
72206521c1 | ||
|
97648d4cc6 |
90
.github/workflows/build.yml
vendored
Normal file
90
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
name: Build
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
branches: [ "main" ]
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up JDK 21
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
java-version: '21'
|
||||
distribution: 'temurin'
|
||||
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
|
||||
run: mvn -B package --file pom.xml
|
||||
|
||||
- name: Debug Directory
|
||||
run: ls -la target/
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ env.PLUGIN_FILE }}-${{ env.PLUGIN_VERSION }}
|
||||
path: target/${{ env.PLUGIN_FILE }}-${{ env.PLUGIN_VERSION }}.jar
|
||||
retention-days: 30
|
||||
|
||||
- name: Send Build Notification
|
||||
if: always()
|
||||
uses: sarisia/actions-status-discord@v1
|
||||
with:
|
||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||
title: "${{ job.status == 'success' && '✅ Build Success!' || '❌ Build Failed!' }}"
|
||||
description: |
|
||||
**${{ env.PLUGIN_NAME }} v${{ env.PLUGIN_VERSION }}**
|
||||
By ${{ github.actor }} • ${{ github.sha }}
|
||||
${{ github.repository }}
|
||||
color: ${{ job.status == 'success' && '0x00ff00' || '0xff0000' }}
|
||||
username: "🏺Artifact Build's"
|
||||
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
|
||||
|
||||
release:
|
||||
needs: build
|
||||
if: github.event_name == 'release'
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- name: Download Artifact
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: ${{ env.PLUGIN_FILE }}-${{ env.PLUGIN_VERSION }}
|
||||
|
||||
- name: Upload Release
|
||||
uses: softprops/action-gh-release@v2
|
||||
with:
|
||||
files: ${{ env.PLUGIN_FILE }}-${{ env.PLUGIN_VERSION }}.jar
|
||||
fail_on_unmatched_files: true
|
||||
|
||||
- name: Send Release Notification
|
||||
if: always()
|
||||
uses: sarisia/actions-status-discord@v1
|
||||
with:
|
||||
webhook: ${{ secrets.DISCORD_WEBHOOK }}
|
||||
title: "${{ job.status == 'success' && '🎉 Release Published!' || '❌ Release Failed!' }}"
|
||||
description: |
|
||||
**${{ env.PLUGIN_NAME }} v${{ env.PLUGIN_VERSION }}**
|
||||
${{ job.status == 'success' && '➜ https://github.com/${{ github.repository }}/releases/latest' || '' }}
|
||||
color: ${{ job.status == 'success' && '0x00ff00' || '0xff0000' }}
|
||||
username: "🏺Artifact Build's"
|
||||
avatar_url: "https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png"
|
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 Koopa
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -14,7 +14,8 @@ A dramatic and feature-rich LifeSteal plugin for Minecraft servers. Take hearts
|
||||
|
||||
## ✦ Downloads
|
||||
Pre-compiled builds are available at:
|
||||
- [SpigotMC](https://www.spigotmc.org/resources/lifesteal-core.xxxxx/)
|
||||
- [SpigotMC](https://www.spigotmc.org/resources/lifesteal-core-1-13-1-20-4.121599/)
|
||||
- [Modrinth](https://modrinth.com/plugin/lifestealcore)
|
||||
- [GitHub Releases](https://github.com/KoopaCode/LifeSteal-Core/releases)
|
||||
|
||||
## ✦ Requirements
|
||||
|
1
modrinth/url
Normal file
1
modrinth/url
Normal file
@ -0,0 +1 @@
|
||||
https://modrinth.com/plugin/lifestealcore
|
Loading…
x
Reference in New Issue
Block a user