Minimize the diff for new version port #50
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: Build Status | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: 21 | |
cache: 'gradle' | |
- name: Build with Gradle | |
run: ./gradlew build --rerun-tasks | |
- name: Detonate JARs | |
run: python ./ci/hissboom.py "./build/libs/*.jar" | |
- name: Upload build artifacts (Fabric) | |
continue-on-error: true | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ github.event.repository.name }}-Fabric-${{ github.sha }} | |
path: | | |
build/libs/*.jar | |
!build/libs/*-dev.jar |