Skip to content

Merge branch 'master' of https://github.com/klashdevelopment/Caramel #3

Merge branch 'master' of https://github.com/klashdevelopment/Caramel

Merge branch 'master' of https://github.com/klashdevelopment/Caramel #3

Workflow file for this run

name: Java CI with Maven
concurrency:
group: "maven-build"
cancel-in-progress: true
permissions:
contents: write
on:
push:
branches: [ master ]
paths-ignore:
- '*.md'
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: "Automatic Build"
body: "Automatically released build for Maven"
prerelease: true
files: |
./target/*.jar