Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 to 3.1.2 #97
Workflow file for this run
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: Build with Maven | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Disable shallow clones for static analysis (SonarCloud) | |
# JDK | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 16 | |
distribution: adopt | |
# Caches | |
- name: 'Cache: Maven-Repository' | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('./pom.xml') }} | |
- name: 'Cache: SonarCloud packages' | |
uses: actions/cache@v4 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
# Compile the project using maven | |
- name: Build with Maven | |
run: 'mvn -B -Duser.name="GitHub Runner on $GITHUB_REPOSITORY (id=$GITHUB_RUN_ID)" clean package' | |
# Upload the .jar files | |
- name: 'Upload Build Artifact' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: McAuth-BungeeCord | |
path: ./target/McAuth-BungeeCord.jar | |
# Run static code analysis | |
- name: 'SonarCloud.io (static code analysis)' | |
if: ${{ env.SONAR_TOKEN != null }} | |
run: 'mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |