Skip to content

Commit

Permalink
added github workflow to create jar
Browse files Browse the repository at this point in the history
  • Loading branch information
krrishnaaaa committed Oct 13, 2024
1 parent a81c601 commit b589427
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: 🔨 Build and Check PR 🚀

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

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

# Step 2: Set up Julu JDK 17 ☕
- name: ☕ Set up Julu JDK 17
uses: actions/setup-java@v3
with:
java-version: '17' # Set the desired JDK version
distribution: 'julu' # Specify Julu 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: Upload the shadowJar artifact (optional) 🎁
- name: 🎁 Upload shadowJar
uses: actions/upload-artifact@v3
with:
name: shadow-jar
path: build/libs/*.jar

0 comments on commit b589427

Please sign in to comment.