feat: contains and containsItems [DHIS2-16211] (#50) #70
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
name: Merge to Master | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.7 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.7 | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Test | |
run: mvn clean install -DskipTests=false --update-snapshots -q | |
artifact: | |
name: Publish - Nexus | |
runs-on: ubuntu-latest | |
needs: unit-test | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11.0.4 | |
- name: Remove snapshot | |
run: mvn -B versions:set -DremoveSnapshot -DgenerateBackupPoms=false | |
- name: Release Maven package | |
uses: samuelmeuli/action-maven-publish@v1 | |
with: | |
nexus_username: ${{ secrets.nexus_username }} | |
nexus_password: ${{ secrets.nexus_password }} | |
gpg_private_key: ${{ secrets.PGP_PRIVATE_KEY }} | |
gpg_passphrase: ${{ secrets.PGP_PASSPHRASE }} | |
maven_profiles: "master" |