aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/deploy_library_releases.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/deploy_library_releases.yml')
-rw-r--r--.github/workflows/deploy_library_releases.yml16
1 files changed, 4 insertions, 12 deletions
diff --git a/.github/workflows/deploy_library_releases.yml b/.github/workflows/deploy_library_releases.yml
index 04b2374b..cdb1a211 100644
--- a/.github/workflows/deploy_library_releases.yml
+++ b/.github/workflows/deploy_library_releases.yml
@@ -8,20 +8,12 @@ jobs:
publish-release:
runs-on: ubuntu-latest
steps:
- - name: Checkout repository
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
-
- - name: Set up JDK
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
- with:
- distribution: temurin
- java-version: 20
+ - name: Setup build environment
+ uses: android-password-store/android-password-store/.github/reusable-workflows/setup-gradle@develop
- name: Upload binaries
- uses: gradle/actions/setup-gradle@6cec5d49d4d6d4bb982fbed7047db31ea6d38f11 # v3
- with:
- arguments: --no-configuration-cache :autofill-parser:publishAllPublicationsToMavenCentralRepository
- gradle-home-cache-cleanup: true
+ shell: bash
+ run: ./gradlew --no-configuration-cache :autofill-parser:publishAllPublicationsToMavenCentralRepository
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.NEXUS_PUBLISH_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.NEXUS_PUBLISH_PASSWORD }}