Skip to content

Merge pull request #71 from qtc-de/develop #5

Merge pull request #71 from qtc-de/develop

Merge pull request #71 from qtc-de/develop #5

Workflow file for this run

name: plugin CI
on:
push:
branches:
- master
- develop
- 'feat/**'
paths:
- 'plugins/quartz-scheduler/**'
- '.github/workflows/plugin-ci.yml'
pull_request:
branches:
- develop
- 'feat/**'
paths:
- 'plugins/quartz-scheduler/**'
- '.github/workflows/plugin-ci.yml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
plugin:
- quartz-scheduler
steps:
- name: ${{ github.event.repository.name }}
uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 8
cache: maven
cache-dependency-path: pom.xml
- name: Build with Maven
run: mvn -B package --file plugins/${{ matrix.plugin }}/pom.xml
- name: Archive generated JAR file
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.plugin }}-compiled-jars
path: plugins/${{ matrix.plugin }}/target/*.jar