aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/deploy_library_releases.yml
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2024-04-13 14:45:08 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2024-04-13 14:50:29 +0530
commit312f92d21a5b8925496d5015357c257dace3a028 (patch)
treeef4119ef6308dc4732de6702cf0b90e8066c373a /.github/workflows/deploy_library_releases.yml
parent13a2da9f33be815a1a982d1d8e75e882a6460bd0 (diff)
refactor(ci): introduce a composite workflow
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 }}