feat: add new predicates for String #36
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
| # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
| name: Maven Build for maintenance branch | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build-bundles: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '11' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build with Maven | |
| run: ./mvnw -B jacoco:prepare-agent install jacoco:report jacoco:report-aggregate --file pom.xml | |
| deploy-bundles: | |
| runs-on: ubuntu-latest | |
| needs: build-bundles | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 11 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '11' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Install GPG key | |
| run: | | |
| cat <(echo -e "${{ secrets.GPG_PRIVATE_KEY }}") | gpg --batch --import | |
| gpg --list-secret-keys --keyid-format LONG | |
| - name: Initialize variables | |
| id: init | |
| run: | | |
| VERSION=$(./mvnw -B help:evaluate -Dexpression='project.version' $@ | grep -v '\[' | tail -1) | |
| echo "VERSION=$VERSION" >> $GITHUB_ENV | |
| echo "$VERSION" | |
| - name: Publish Snapshot to Central | |
| env: | |
| OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
| OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
| if: contains(env.VERSION, 'SNAPSHOT' ) | |
| run: | | |
| ./mvnw \ | |
| --no-transfer-progress \ | |
| --batch-mode \ | |
| clean install deploy \ | |
| --settings .util/settings.xml \ | |
| -DskipTests | |
| - name: Publish release to Central | |
| env: | |
| OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
| OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
| if: ${{ !contains(env.VERSION, 'SNAPSHOT' ) }} | |
| run: | | |
| ./mvnw \ | |
| --no-transfer-progress \ | |
| --batch-mode \ | |
| clean package javadoc:jar source:jar-no-fork gpg:sign install deploy \ | |
| --settings .util/settings.xml \ | |
| -DskipTests \ | |
| -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} \ | |
| -P deploy-artifacts | |
| # mvn clean package javadoc:jar source:jar-no-fork gpg:sign install deploy -DskipTests | |
| #-s .util/settings.xml -DskipTests clean package javadoc:jar source:jar-no-fork gpg:sign install deploy | |
| # | |