Skip to content

Update all non-major dependencies #19

Update all non-major dependencies

Update all non-major dependencies #19

Workflow file for this run

name: Build and upload jar
on: [ push, pull_request ]
jobs:
build:
# Only run on PRs if the source branch is on someone else's repo
if: "${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build with Gradle
run: ./gradlew build
- name: Upload PistonChat
uses: actions/[email protected]
with:
name: PistonChat
path: PistonChat/build/libs/*.jar
- name: Upload PistonMute
uses: actions/[email protected]
with:
name: PistonMute
path: PistonMute/build/libs/*.jar
- name: Upload PistonFilter
uses: actions/[email protected]
with:
name: PistonFilter
path: PistonFilter/build/libs/*.jar