diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2024-04-13 14:45:08 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2024-04-13 14:50:29 +0530 |
commit | 312f92d21a5b8925496d5015357c257dace3a028 (patch) | |
tree | ef4119ef6308dc4732de6702cf0b90e8066c373a /.github/workflows/sync_crowdin.yml | |
parent | 13a2da9f33be815a1a982d1d8e75e882a6460bd0 (diff) |
refactor(ci): introduce a composite workflow
Diffstat (limited to '.github/workflows/sync_crowdin.yml')
-rw-r--r-- | .github/workflows/sync_crowdin.yml | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index aec71aa7..473bc6be 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -8,20 +8,12 @@ jobs: sync-crowdin: runs-on: ubuntu-latest steps: - - name: Checkout - 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: Download new translations from Crowdin - uses: gradle/actions/setup-gradle@6cec5d49d4d6d4bb982fbed7047db31ea6d38f11 # v3 - with: - arguments: --no-configuration-cache crowdin - gradle-home-cache-cleanup: true + shell: bash + run: ./gradlew --no-configuration-cache crowdin env: CROWDIN_LOGIN: ${{ secrets.CROWDIN_LOGIN }} CROWDIN_PROJECT_KEY: ${{ secrets.CROWDIN_PROJECT_KEY }} |