Merge pull request #5 from OneLiteFeatherNET/renovate/gradle-8.x #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build CloudNet v4 JMX Support | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
# Run on all label events (won't be duplicated) or all push events or on PR syncs not from the same repo | |
if: github.repository_owner == 'OneLiteFeatherNET' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
cache: gradle | |
java-version: 17 | |
- name: Clean Build | |
run: ./gradlew clean build jar | |
- name: Archive Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: CloudNet-JMX-Support Archive | |
path: build/libs/CloudNet-JMX-Support-*.jar |