Skip to content

Commit 2b9a308

Browse files
Update and rename docker-image.yml to docker.yml
1 parent 117dfe8 commit 2b9a308

2 files changed

Lines changed: 19 additions & 36 deletions

File tree

.github/workflows/docker-image.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/docker.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Docker Reusable Workflow
2+
run-name: GitHub Action Docker Reusable Workflow
3+
on:
4+
workflow_dispatch:
5+
workflow_call:
6+
7+
jobs:
8+
Docker-Workflow:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Set up JDK 17
13+
uses: actions/setup-java@v3
14+
with:
15+
java-version: '17'
16+
distribution: 'temurin'
17+
cache: maven
18+
- name: Build with Maven
19+
run: mvn -B package --file pom.xml

0 commit comments

Comments
 (0)