From ce74e163fe6381e185e8c02f5d688e58cb8b81dd Mon Sep 17 00:00:00 2001 From: Stijn Bannink Date: Sun, 6 Nov 2022 11:39:56 +0100 Subject: [PATCH] Create maven.yml --- .github/workflows/maven.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..3e782da --- /dev/null +++ b/.github/workflows/maven.yml @@ -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