Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
7b0ea4c694
1 changed files with 27 additions and 0 deletions
27
.github/workflows/maven.yml
vendored
Normal file
27
.github/workflows/maven.yml
vendored
Normal 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
|
Reference in a new issue