Skip to content

Fix

Fix #16

Workflow file for this run

name: "Builds"
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
cache: maven
- name: Build NBM
run: |
mvn -B clean install -P dev -Dnext.version=1.0.0
env:
GITHUB_TOKEN: ${{ github.token }}