Skip to content

Maven Release Package #4

Maven Release Package

Maven Release Package #4

Workflow file for this run

name: Maven Package
on:
release:
types: [created]
# Add the workflow_dispatch event to enable manual triggering
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }}/pax-sdk # location for the settings.xml file
- name: Build with Maven
run: mvn -B package -DskipTests --file pax-sdk/pom.xml
- name: Publish to GitHub Packages Apache Maven
run: mvn deploy -s pax-sdk/settings.xml --file pax-sdk/pom.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}