fix(deps): update dependency org.springframework.boot:spring-boot-dependencies to v3.5.10 #363
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: Release | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| cleanup-runs: | |
| runs-on: ubuntu-latest | |
| if: ${{ startsWith(github.head_ref, 'release') }} | |
| steps: | |
| - uses: rokroskar/workflow-run-cleanup-action@master | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| release: | |
| runs-on: ubuntu-latest | |
| if: ${{ startsWith(github.head_ref, 'release') }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '17' | |
| distribution: 'adopt' | |
| cache: maven | |
| - name: Configure Git | |
| run: | | |
| git config --global user.name 'Release Bot' | |
| git config --global user.email 'release@users.noreply.github.com' | |
| git fetch | |
| git checkout "$(echo ${GITHUB_HEAD_REF})" | |
| - name: Release to Maven Central | |
| uses: samuelmeuli/action-maven-publish@v1 | |
| with: | |
| gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
| gpg_passphrase: ${{ secrets.GPG_PASSWORD }} | |
| nexus_username: ${{ secrets.SONATYPE_USERNAME }} | |
| nexus_password: ${{ secrets.SONATYPE_PASSWORD }} | |
| maven_profiles: release | |
| maven_goals_phases: release:clean release:prepare release:perform | |
| maven_args: --batch-mode |