Skip to content

first commit after 4 years, lets see what happens #50

first commit after 4 years, lets see what happens

first commit after 4 years, lets see what happens #50

Workflow file for this run

name: Default
on:
push:
branches:
- '**'
release:
types: [ published ]
jobs:
# ---------------------------------------------------------------------------
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download Maven Cache
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Setup JDK 1.8
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: 'adopt'
- name: Maven Build
run: mvn -B verify -Pci
- name: Upload Plugin Artifact
uses: actions/upload-artifact@v4
with:
name: target
path: target/*.jar
retention-days: 2