OneSky Translation Download #99
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: OneSky Translation Download | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
upload: | |
name: Download Latest Strings from OneSky | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Setup Java JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "temurin" | |
java-version-file: ".java-version" | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ secrets.AWS_IAM_ONESKY_ROLE_ARN }} | |
aws-region: us-east-1 | |
- name: Import OneSky Keys | |
uses: dkershner6/aws-ssm-getparameters-action@v2 | |
with: | |
parameterPairs: | | |
/shared/onesky/PUBLIC_KEY = ORG_GRADLE_PROJECT_ONESKY_API_KEY, | |
/shared/onesky/SECRET_KEY = ORG_GRADLE_PROJECT_ONESKY_API_SECRET | |
- name: Remove previous strings | |
run: | | |
rm */src/main/res/values-*/strings*.xml | |
rm */*/src/main/res/values-*/strings*.xml | |
- name: Download Strings from OneSky | |
run: ./gradlew downloadTranslations --max-workers 1 --scan | |
- name: Create Translation Update Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
branch: "chore/oneskyTranslations" | |
title: "Update Translations" | |
commit-message: "Download the latest strings from OneSky" |