Skip to content

Commit

Permalink
added GitHub workflow to create jar and modified build.gradle.kts to …
Browse files Browse the repository at this point in the history
…generate shadowJar
  • Loading branch information
krrishnaaaa committed Oct 13, 2024
1 parent a81c601 commit 6b78f7b
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: 🔨 Build and Check PR 🚀

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
# Step 1: Checkout the repository 📂
- name: 📥 Checkout repository
uses: actions/checkout@v4

# Step 2: Set up Zulu JDK 17 ☕
- name: ☕ Set up Zulu JDK 17
uses: actions/setup-java@v4
with:
java-version: '17' # Set the desired JDK version
distribution: 'zulu' # Specify Zulu as the distribution

# Step 3: Build the project 🔨
- name: 🔨 Run Gradle build
run: ./gradlew build --no-daemon

# Step 4: Create the shadow JAR 📦
- name: 🛠️ Build Shadow JAR
run: ./gradlew shadowJar --no-daemon

# Step 5: Get the name of the generated jar file
- name: 🧾 Get the shadowJar file name
id: get_jar_name
run: |
JAR_NAME=$(basename build/libs/*.jar)
echo "jar_name=$JAR_NAME" >> $GITHUB_ENV
# Step 6: Upload the shadowJar artifact (optional) 🎁
- name: 🎁 Upload shadowJar
uses: actions/upload-artifact@v4
with:
name: ${{ env.jar_name }}
path: build/libs/${{ env.jar_name }}
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,16 @@ tasks {
archiveClassifier.set("")
archiveVersion.set("1.0-SNAPSHOT")
}
}

tasks.named("startShadowScripts") {
dependsOn(tasks.named("jar"))
}

tasks.named("startScripts") {
dependsOn(tasks.named("shadowJar"))
}

tasks.named("distTar") {
dependsOn(tasks.named("shadowJar"))
}
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.

0 comments on commit 6b78f7b

Please sign in to comment.