mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-01 05:57:09 +00:00
d7da199d26
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3.6.0 to 3.9.0. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v3.6.0...v3.9.0) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ryan <Wild1145@users.noreply.github.com>
22 lines
380 B
YAML
22 lines
380 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.9.0
|
|
with:
|
|
java-version: 17
|
|
distribution: 'adopt'
|
|
- name: Build with Maven
|
|
run: mvn -B package --file pom.xml
|