mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-01 05:57:09 +00:00
22 lines
376 B
YAML
22 lines
376 B
YAML
name: Java17-Maven-Build
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build-java-17:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
# Checkout the code
|
|
- uses: actions/checkout@v3
|
|
|
|
# Java 16 Builds
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: 17
|
|
distribution: 'adopt'
|
|
- name: Build with Maven
|
|
run: mvn -B package --file pom.xml
|