This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
Bump actions/upload-artifact from 3 to 4 #145
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: Check Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ develop ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ develop ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [8, 11, 17, 21] | |
java-package: [jdk] | |
distribution: [temurin] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
java-version: ${{ matrix.java }} | |
java-package: ${{ matrix.java-package }} | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B clean verify | |
- name: Check for uncommited changes | |
run: | | |
if [[ "$(git status --porcelain)" != "" ]]; then | |
echo ---------------------------------------- | |
echo git status | |
echo ---------------------------------------- | |
git status | |
echo ---------------------------------------- | |
echo git diff | |
echo ---------------------------------------- | |
git diff | |
echo ---------------------------------------- | |
echo Troubleshooting | |
echo ---------------------------------------- | |
echo "::error::Unstaged changes detected. Locally try running: git clean -ffdx && mvn -B clean verify" | |
exit 1 | |
fi | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: jars-java-${{ matrix.java }} | |
path: target/*.jar | |
if-no-files-found: error |