Skip to content

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 #146

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 #146

Workflow file for this run

name: Java CI with Maven
on:
push:
# dependabot will create both branches and pull request
# only run on pull requests to avoid running twice and creating a release draft
branches-ignore:
- 'dependabot/**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
- name: Build with Maven
run: |
./mvnw -B test
- name: publish
if: ${{ success() && github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }}
env:
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
run: |
mvn deploy --settings cisettings.xml -DskipTests=true -B