Skip to content

Remove draft from Release action #16

Remove draft from Release action

Remove draft from Release action #16

Workflow file for this run

# This workflow will build the Java project with Maven
name: Build
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "main", "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'zulu'
cache: maven
- name: Build with Maven
run: mvn package