allow to customize json search function (#188) #249
  
    
      This file contains hidden or 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: Java Snapshot CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: "!contains(github.event.head_commit.message, '[maven-release-plugin] prepare')" | |
| env: | |
| MAVEN_REPO_USERNAME: ${{ secrets.nexus_username }} | |
| MAVEN_REPO_PASSWORD: ${{ secrets.nexus_password }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 17 | |
| - name: Build and publish snapshot with Maven | |
| uses: perplexhub/action-maven-publish-snapshot@master | |
| with: | |
| gpg_private_key: ${{ secrets.gpg_private_key }} | |
| gpg_passphrase: ${{ secrets.gpg_passphrase }} | |
| nexus_username: ${{ secrets.nexus_username }} | |
| nexus_password: ${{ secrets.nexus_password }} |