Skip to content

projectiles splash potion fix #151

projectiles splash potion fix

projectiles splash potion fix #151

Workflow file for this run

# Build Workflow
name: Build with Gradle
on:
pull_request:
workflow_dispatch:
push:
concurrency:
group: ${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: gradle
- name: Make Gradle executable
run: chmod +x ./gradlew
- name: Build
run: ./gradlew build --parallel --build-cache
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: artifact
path: artifacts/camel.jar
if-no-files-found: error