fix(deps): update dependency androidx.compose:compose-bom to v2025 #654
Workflow file for this run
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
# Open PR -> deploy to Maven Central Staging | |
name: Deploy to Maven Central Staging | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize, ready_for_review ] | |
jobs: | |
deploy-mavencentral: | |
runs-on: macos-latest | |
if: ${{ !github.event.pull_request.draft }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- uses: ./.github/actions/gradle-cache | |
- name: Deploy to Maven Central | |
env: | |
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME_TOKEN }} | |
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD_TOKEN }} | |
SIGNING_PGP_KEY: ${{ secrets.SIGNING_PGP_KEY }} | |
SIGNING_PGP_PASSWORD: ${{ secrets.SIGNING_PGP_PASSWORD }} | |
run: | | |
./gradlew publishToSonatype closeSonatypeStagingRepository |