Skip to content

The Rebirth Update: Part 2 (#171) #172

The Rebirth Update: Part 2 (#171)

The Rebirth Update: Part 2 (#171) #172

Workflow file for this run

name: Build Status
on:
push:
branches:
- '*'
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.14
- name: Set up JDK 25
uses: actions/setup-java@v5
with:
distribution: 'microsoft'
java-version: 25
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew build --rerun-tasks
- name: Detonate JARs
run: |
python ./ci/hissboom.py "./mod_fabric/build/libs/*.jar"
python ./ci/hissboom.py "./mod_norge/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: |
mod_fabric/build/libs/*.jar
- name: Upload build artifacts (Neo)
continue-on-error: true
uses: actions/upload-artifact@v4
with:
name: ${{ github.event.repository.name }}-Neo-${{ github.sha }}
path: |
mod_norge/build/libs/*.jar