Updated the project #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 wrapper 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@v4 | |
with: | |
name: shadow-jar | |
path: build/libs/*.jar |