Skip to content

Update build.gradle.kts #10

Update build.gradle.kts

Update build.gradle.kts #10

Workflow file for this run

name: Build Java Project and Generate JAR
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the latest code
- name: Checkout repository
uses: actions/checkout@v4
# Step 2: Set up Java environment with required distribution
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
# Step 3: Cache Gradle dependencies
- name: Cache Gradle dependencies
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle
# Step 4: Build the project with Gradle and generate the JAR
- name: Build with Gradle
run: ./gradlew shadowJar
# Step 5: Upload the generated JAR as an artifact
- name: Upload JAR file
uses: actions/upload-artifact@v4
with:
name: Worttrainer
path: app/build/libs/*-all.jar