Skip to content

ci: Make the publishing into maven repo automatic. #56

ci: Make the publishing into maven repo automatic.

ci: Make the publishing into maven repo automatic. #56

Workflow file for this run

name: 'Maven Package'
on: [ 'push', 'pull_request' ]
jobs:
build:
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package --file pom.xml