fix(deps): update dependency com.google.code.gson:gson to v2.13.1 #111
Workflow file for this run
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: 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' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- 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 |