Skip to content

Commit

Permalink
Create maven-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bhuism authored Oct 22, 2024
1 parent caa6ce2 commit 89332df
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build Image

on:
push:
branches: [ "development" ]
pull_request:
branches: [ "development" ]

jobs:
image:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: "liberica"
cache: maven

- name: Build with Maven
run: mvn -ntp -B spring-boot:build-image

0 comments on commit 89332df

Please sign in to comment.