refactor:adapted to JDK21+ virtual thread implementation, avoiding th… #416
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: Snapshot | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release/* | |
| paths-ignore: | |
| - '**.md' | |
| jobs: | |
| check-snapshot: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| IS_SNAPSHOT: ${{ steps.set_output_1.outputs.IS_SNAPSHOT }} | |
| steps: | |
| - name: Checkout codes | |
| uses: actions/checkout@v4 | |
| - name: Check deploy type | |
| id: set_output_1 | |
| run: | | |
| line="$(grep SNAPSHOT pom.xml || true)" | |
| echo $line | |
| if [ -n "$line" ]; then | |
| echo "IS_SNAPSHOT=true" >> $GITHUB_OUTPUT | |
| else | |
| echo "IS_SNAPSHOT=false" >> $GITHUB_OUTPUT | |
| fi | |
| release: | |
| runs-on: ubuntu-latest | |
| needs: check-snapshot | |
| if: ${{ needs.check-snapshot.outputs.IS_SNAPSHOT == 'true' }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Maven Central Repository | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '8' | |
| distribution: 'temurin' | |
| server-id: central-portal | |
| server-username: MAVEN_USERNAME | |
| server-password: MAVEN_PASSWORD | |
| - name: Publish package | |
| run: mvn --batch-mode -U clean deploy -DskipTests | |
| env: | |
| MAVEN_USERNAME: ${{ secrets.CENTRAL_PORTAL_USERNAME }} | |
| MAVEN_PASSWORD: ${{ secrets.CENTRAL_PORTAL_TOKEN }} |