forked from Upstream/CommandPanels
25 lines
518 B
YAML
25 lines
518 B
YAML
name: Java CI with Maven
|
|
|
|
on:
|
|
push:
|
|
branches: [ latest ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'temurin'
|
|
- name: Build with Maven
|
|
run: mvn clean package --file pom.xml
|
|
- name: Upload Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: CommandPanels-DEV
|
|
path: target/*.jar |