diff --git a/.github/actions/download-translations/action.yml b/.github/actions/download-translations/action.yml index 39627ab54..a982d288a 100644 --- a/.github/actions/download-translations/action.yml +++ b/.github/actions/download-translations/action.yml @@ -47,6 +47,7 @@ runs: if [ "$CODE" == "values" ]; then CODE="en"; fi XML_LOCALES="$XML_LOCALES \n" done - printf "$XML_START$XML_LOCALES$XML_END" > common/src/main/res/xml/locales_config.xml + printf "$XML_START$XML_LOCALES$XML_END" > app/src/main/res/xml/locales_config.xml + printf "$XML_START$XML_LOCALES$XML_END" > wear/src/main/res/xml/locales_config.xml echo "Complete" diff --git a/.github/workflows/onPush.yml b/.github/workflows/onPush.yml index 1648544dd..126174924 100644 --- a/.github/workflows/onPush.yml +++ b/.github/workflows/onPush.yml @@ -89,6 +89,9 @@ jobs: VERSION_CODE: ${{ steps.rel_number.outputs.version-code }} run: ./gradlew appDistributionUploadFullRelease + - name: Print `git status` + run: git status + play_publish: name: Play Publish runs-on: ubuntu-latest @@ -163,3 +166,6 @@ jobs: run: | ./gradlew :wear:promoteReleaseBundle :app:promoteReleaseBundle ./gradlew :automotive:promoteReleaseBundle || echo "Failed to promote Automotive!" + + - name: Print `git status` + run: git status diff --git a/.gitignore b/.gitignore index 9154c8206..1967ac1e6 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,8 @@ version.txt # Make sure our translation downloads don't make our repo dirty when building. strings.zip common/src/main/res/*/strings.xml -common/src/main/res/xml/locales_config.xml +app/src/main/res/xml/locales_config.xml +wear/src/main/res/xml/locales_config.xml !common/src/main/res/values/strings.xml firebaseAppDistributionServiceCredentialsFile.json