mirror of
https://github.com/dmulloy2/ProtocolLib.git
synced 2024-11-18 08:35:17 +01:00
29 lines
610 B
YAML
29 lines
610 B
YAML
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
|