-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OZ-559: Deploy Maven artifacts to public Nexus repositories and add a…
… license under MPL 2.0. (#30)
- Loading branch information
Showing
3 changed files
with
394 additions
and
64 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 }} |
Oops, something went wrong.