Bump jackson.version from 2.13.1 to 2.17.1 (#91) #55
This file contains 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: Deploy snapshots | |
# see https://docs.github.com/en/actions/guides/publishing-java-packages-with-maven | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
release: | |
name: Release on Sonatype OSS | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'hazelcast' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Read Java Config | |
run: cat ${{ github.workspace }}/.github/java-config.env >> $GITHUB_ENV | |
- name: Set up Apache Maven Central | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
distribution: ${{ env.JAVA_DISTRIBUTION }} | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} | |
gpg-passphrase: MAVEN_GPG_PASSPHRASE | |
cache: 'maven' | |
- name: Publish to Apache Maven Central | |
run: | | |
PROJECT_VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec) | |
if [[ "$PROJECT_VERSION" == *-SNAPSHOT ]]; then | |
mvn --batch-mode -Prelease deploy | |
fi | |
env: | |
MAVEN_USERNAME: ${{ secrets.SONATYPE_OSS_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.SONATYPE_OSS_PASSWORD }} | |
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} |