This repository has been archived by the owner on May 10, 2024. It is now read-only.
Merge pull request #340 from AtlasMediaGroup/merge/main/development #911
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |