Skip to content

Update README.md

Update README.md #10

Workflow file for this run

name: Java CI with Maven
concurrency:
group: "maven-build"
cancel-in-progress: true
permissions:
contents: write
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'zulu'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: "latest"
name: "Caramel Development Build"
body: "Nightly development build for Caramel."
prerelease: true
files: |
./target/*.jar