Skip to content

Update build-jpackage-win.yml, harmonize names #210

Update build-jpackage-win.yml, harmonize names

Update build-jpackage-win.yml, harmonize names #210

Workflow file for this run

name: Build All
on: [push]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: set up JDK 1.21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'corretto'
- name: Build with Gradle
run: |
./gradlew build --info --stacktrace
./gradlew :RMBTClient:shadowJar
- name: Archive files
uses: actions/upload-artifact@v4
with:
name: outputs
path: |
RMBTClient/build/libs/*-all.jar
retention-days: 365