3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkConnector/.github/workflows/maven.yml

28 lines
496 B
YAML
Raw Normal View History

2022-11-06 10:39:56 +00:00
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