Bump org.junit:junit-bom from 5.11.1 to 5.11.2 (#1227) #487
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: Publish snapshots to maven | |
on: | |
push: | |
branches: | |
- main | |
- '2.x' | |
jobs: | |
build-and-publish-snapshots: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
role-to-assume: ${{ secrets.PUBLISH_SNAPSHOTS_ROLE }} | |
aws-region: us-east-1 | |
- name: publish snapshots to maven | |
run: | | |
export SONATYPE_USERNAME=$(aws secretsmanager get-secret-value --secret-id maven-snapshots-username --query SecretString --output text) | |
export SONATYPE_PASSWORD=$(aws secretsmanager get-secret-value --secret-id maven-snapshots-password --query SecretString --output text) | |
echo "::add-mask::$SONATYPE_USERNAME" | |
echo "::add-mask::$SONATYPE_PASSWORD" | |
./gradlew --no-daemon publishPublishMavenPublicationToSnapshotsRepository |