WIP - New API #761
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: 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: '21' | |
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 |