mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-15 03:53:33 +00:00
22 lines
376 B
YAML
22 lines
376 B
YAML
|
name: Java11-Maven-Build
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
# Checkout the code
|
||
|
- uses: actions/checkout@v1
|
||
|
|
||
|
# Java 11 Builds
|
||
|
- name: Set up JDK 11
|
||
|
uses: actions/setup-java@v2.2.0
|
||
|
with:
|
||
|
java-version: 11
|
||
|
distribution: 'adopt'
|
||
|
- name: Build with Maven
|
||
|
run: mvn -B package --file pom.xml
|