Skip to content

Create maven.yml

Create maven.yml #25

Workflow file for this run

name: CICD By DevOps Shack
on:
push:
branches: [ "main" ]
jobs:
cicd:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn package