diff --git a/.github/workflows/AutoCompilePlugin.yml b/.github/workflows/AutoCompilePlugin.yml new file mode 100644 index 0000000..6e348af --- /dev/null +++ b/.github/workflows/AutoCompilePlugin.yml @@ -0,0 +1,28 @@ +name: Auto Compile Plugin + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK(21) + uses: actions/setup-java@v4 + with: + java-version: '21' + distribution: 'temurin' + cache: maven + - name: Build with Maven + run: mvn -B package --file pom.xml + - name: Upload plugin.jar + uses: actions/upload-artifact@v4 + with: + name: ChatManager + path: target/*.jar diff --git a/README.md b/README.md index 5ba95a1..aa8ffb5 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,6 @@ License -
- - Release -

---