Skip to content

KH-400: Configure drugs to be OpenMRS drugs (limited to NCD specific … #258

KH-400: Configure drugs to be OpenMRS drugs (limited to NCD specific …

KH-400: Configure drugs to be OpenMRS drugs (limited to NCD specific … #258

Workflow file for this run

name: Build and Publish
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
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-public",
"username": "${{ secrets.MEKOM_NEXUS_USERNAME }}",
"password": "${{ secrets.MEKOM_NEXUS_PASSWORD }}"
},
{
"id": "mks-nexus-public-snapshots",
"username": "${{ secrets.MEKOM_NEXUS_USERNAME }}",
"password": "${{ secrets.MEKOM_NEXUS_PASSWORD }}"
},
{
"id": "mks-nexus-private",
"username": "${{ secrets.MEKOM_NEXUS_USERNAME }}",
"password": "${{ secrets.MEKOM_NEXUS_PASSWORD }}"
},
{
"id": "mks-nexus-private-snapshots",
"username": "${{ secrets.MEKOM_NEXUS_USERNAME }}",
"password": "${{ secrets.MEKOM_NEXUS_PASSWORD }}"
}]
if: ${{ github.ref == 'refs/heads/main' }}
- name: Build and publish (with 'prod' profile)
run: mvn --batch-mode clean deploy -Pprod
if: ${{ github.ref == 'refs/heads/main' }}