docs(readme): restore short 0.22.x recent-releases bullets #160
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: Verify published POMs | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify-poms: | |
| name: Publish to Maven local and validate POM coordinates | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Copy CI gradle.properties | |
| run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 25 | |
| - name: Publish to Maven local | |
| env: | |
| GRADLE_OPTS: -Dorg.gradle.jvmargs="-Xmx4g -Dfile.encoding=UTF-8" | |
| run: | | |
| ./gradlew --no-daemon --stacktrace --no-configuration-cache \ | |
| -PRELEASE_SIGNING_ENABLED=false \ | |
| -PsignAllPublications=false \ | |
| publishToMavenLocal | |
| - name: Validate POM coordinates | |
| run: ./.github/scripts/validate-published-poms.sh |