Skip to content

Fixing errors occurring on servers using ResourceLocation Compressor #6

Fixing errors occurring on servers using ResourceLocation Compressor

Fixing errors occurring on servers using ResourceLocation Compressor #6

name: Gradle Package
on:
push:
branches: [ '2.0' ]
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
#- name: Upload build artifacts sponge
# uses: actions/upload-artifact@v4
# with:
# name: sponge-build
# path: sponge/build/libs
- name: Publish package
run: ./gradlew publishAllPublicationsToMavenRepository
env:
DEPLOY_ID: ${{ secrets.DEPLOY_ID }}
DEPLOY_PW: ${{ secrets.DEPLOY_PW }}