Skip to content

Commit

Permalink
OZ-559: Deploy Maven artifacts to public Nexus repositories and add a…
Browse files Browse the repository at this point in the history
… license under MPL 2.0. (#30)
  • Loading branch information
kdaud authored Aug 30, 2024
1 parent a686b4f commit 72e3c72
Show file tree
Hide file tree
Showing 3 changed files with 394 additions and 64 deletions.
73 changes: 15 additions & 58 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,69 +2,26 @@ name: Build and Publish

on:
push:
branches: [ "main" ]
pull_request:
types: [opened, reopened]
branches: [ "main" ]
release:
types: [published]

jobs:
build:
runs-on: ubuntu-latest
uses: mekomsolutions/shared-github-workflow/.github/workflows/maven-build-test.yml@main
with:
java-version: "8"
maven-phase: "install"
secrets:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}

steps:
- uses: actions/checkout@v2

- name: Set up JDK 8
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '8'

- name: Set settings.xml
uses: s4u/[email protected]
with:
servers: |
[{
"id": "mks-nexus-private",
"username": "${{ secrets.NEXUS_USERNAME }}",
"password": "${{ secrets.NEXUS_PASSWORD }}"
},
{
"id": "mks-nexus-private-snapshots",
"username": "${{ secrets.NEXUS_USERNAME }}",
"password": "${{ secrets.NEXUS_PASSWORD }}"
}]
- name: Build
run: mvn --batch-mode clean package


publish:
runs-on: ubuntu-latest
release:
if: ${{ (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'release' }}
steps:
- uses: actions/checkout@v2

- name: Set up JDK 8
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '8'

- name: Set settings.xml
uses: s4u/[email protected]
with:
servers: |
[{
"id": "mks-nexus-private",
"username": "${{ secrets.NEXUS_USERNAME }}",
"password": "${{ secrets.NEXUS_PASSWORD }}"
},
{
"id": "mks-nexus-private-snapshots",
"username": "${{ secrets.NEXUS_USERNAME }}",
"password": "${{ secrets.NEXUS_PASSWORD }}"
}]
- name: Build and Publish
run: mvn --batch-mode clean deploy
needs: build
uses: mekomsolutions/shared-github-workflow/.github/workflows/maven-publish.yml@main
secrets:
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
Loading

0 comments on commit 72e3c72

Please sign in to comment.