Skip to content

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1… #42

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1…

Bump org.apache.maven.plugins:maven-source-plugin from 3.3.0 to 3.3.1… #42

Workflow file for this run

name: Deploy Snapshot
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
cache: 'maven'
server-id: github
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: deploy snapshot (github packages)
if: github.ref == 'refs/heads/master'
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
MAVEN_USERNAME: ${{ secrets.GITHUB_ACTOR }}
MAVEN_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: ./mvnw --batch-mode -Dgpg.passphrase=$GPG_PASSPHRASE -DskipTests deploy