Bump io.netty:netty-common from 4.1.77.Final to 4.1.115.Final #34
This file contains hidden or 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: ProtocolLib full build lifecycle | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup java | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '19' | |
| cache: 'gradle' | |
| - name: Run gradle build lifecycle | |
| run: ./gradlew build shadowJar --no-daemon | |
| - name: Upload plugin file | |
| uses: actions/upload-artifact@v2 | |
| with: | |
| name: ProtocolLib | |
| path: build/libs/ProtocolLib.jar |