Skip to content

remove retired concepts from panels when resulting #2

remove retired concepts from panels when resulting

remove retired concepts from panels when resulting #2

name: Deploy Snapshots
on:
push:
branches: [master]
repository_dispatch:
types: ['deploy-snapshots']
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# Check out the code
- uses: actions/checkout@v2
- name: Set up Maven
uses: s4u/[email protected]
with:
java-version: 8
maven-version: 3.8.7
- name: Set up JDK 1.8 and Maven settings file
uses: actions/setup-java@v1
with:
java-version: 1.8
server-id: openmrs-repo-snapshots
server-username: secret_BINTRAY_USERNAME
server-password: secret_BINTRAY_PASSWORD
# Execute the Maven deploy command to compile, package, test, verify, and publish to SNAPSHOT repository
- name: Maven Deploy
run: mvn -B deploy --file pom.xml
env:
secret_BINTRAY_USERNAME: ${{ secrets.BINTRAY_USERNAME }}
secret_BINTRAY_PASSWORD: ${{ secrets.BINTRAY_PASSWORD }}