This repository has been archived by the owner on Nov 1, 2024. It is now read-only.
Added warning message to README.md #15
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
# HMS Networks Solution Center | |
# Artifact Build Action for Maven-based Ewon ETK Projects | |
# Version: 2.0 | |
# | |
# This action is configured to automatically run when a push | |
# is made or pull request is merged to the `main` or `master` | |
# branch. | |
name: Build Artifacts | |
on: | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: 16 | |
- name: Cache local Maven repository | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.m2/repository | |
target/buildJdk | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Compile Java Files With Maven | |
run: mvn package -f pom.xml | |
- name: Get Current Time for Artifact Identification (Ubuntu) | |
run: echo "CURRENT_TIME=$(date +%Y-%m-%d_%H-%M-%S)" >> $GITHUB_ENV | |
- name: Upload Maven Artifacts (Ubuntu) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ github.event.repository.name }}-ARTIFACTS-BUILD${{ env.CURRENT_TIME }}UTC | |
path: | | |
target/*.jar | |
target/*.zip | |
target/*.gz | |
target/*.bz2 |