3
0
Fork 0

Create maven.yml

This commit is contained in:
Stijn Bannink 2022-11-06 11:39:56 +01:00 committed by GitHub
parent 9f80640c5c
commit ce74e163fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
.github/workflows/maven.yml vendored Normal file
View file

@ -0,0 +1,27 @@
name: Java CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Build with Maven
run: mvn -B package --file pom.xml
- run: mkdir -p target
- uses: actions/upload-artifact@master
with:
name: ThemeParkConnector
path: target