1.21.2/1.21.3 update #2572
Workflow file for this run
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: Gradle Package | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Validate gradle wrapper | |
uses: gradle/actions/wrapper-validation@v3 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'adopt' | |
cache: 'gradle' | |
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml | |
settings-path: ${{ github.workspace }} # location for the settings.xml file | |
- name: Build with Gradle | |
run: chmod +x gradlew && ./gradlew build | |
- name: Upload build artifacts api | |
uses: actions/upload-artifact@v4 | |
with: | |
name: api-build | |
path: api/build/libs | |
- name: Upload build artifacts spigot | |
uses: actions/upload-artifact@v4 | |
with: | |
name: spigot-build | |
path: spigot/build/libs | |
- name: Upload build artifacts netty-common | |
uses: actions/upload-artifact@v4 | |
with: | |
name: netty-common-build | |
path: netty-common/build/libs | |
- name: Upload build artifacts bungeecord | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bungeecord-build | |
path: bungeecord/build/libs | |
- name: Upload build artifacts velocity | |
uses: actions/upload-artifact@v4 | |
with: | |
name: velocity-build | |
path: velocity/build/libs | |
- name: Upload build artifacts fabric | |
uses: actions/upload-artifact@v4 | |
with: | |
name: fabric-build | |
path: fabric/build/libs |