FIX: handle rare empty results case in legacy Modified Groth spot pat… #3936
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Maven build and package | |
on: push | |
jobs: | |
build: | |
name: Maven build and deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build with Maven | |
run: | | |
mvn dependency:resolve -B -U | |
mvn clean install -DskipTests -Dmaven.javadoc.skip=true -B | |
mvn -B package --file pom.xml | |
- name: Publish to GitHub Packages | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | |
run: mvn -B deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |