Fix wearable application (#689) #738
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: Build and publish Beta | |
on: | |
push: | |
branches: | |
- 'dev' | |
concurrency: | |
group: "deploy" | |
jobs: | |
invalidate_gradle_cache: | |
name: Update gradle cache | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Set up JDK 1.17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build internal | |
uses: gradle/gradle-build-action@v2 | |
with: | |
cache-read-only: false | |
arguments: testDebug detekt lint | |
build_number: | |
name: Generate build number | |
runs-on: ubuntu-latest | |
outputs: | |
number: ${{ steps.build_out.outputs.number }} | |
number_wearos: ${{ steps.wearos_out.outputs.number_wearos }} | |
steps: | |
- name: Generate build number | |
id: buildnumber | |
uses: onyxmueller/build-tag-number@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate build number for WearOS | |
id: buildnumber_wearos | |
uses: onyxmueller/build-tag-number@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: 'Set output for simple build' | |
id: build_out | |
run: | | |
echo "number=${{ steps.buildnumber.outputs.build_number }}" >> $GITHUB_OUTPUT | |
- name: 'Set output for WearOS' | |
id: wearos_out | |
run: | | |
echo "number_wearos=${{ steps.buildnumber_wearos.outputs.build_number }}" >> $GITHUB_OUTPUT | |
build_internal_release: | |
name: Build Internal AAB and APK | |
runs-on: ubuntu-latest | |
needs: build_number | |
strategy: | |
matrix: | |
target: [ "gh_gms", "gh_nogms", "googleplay" ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Set up JDK 1.17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: 'Set variables' | |
id: vars | |
run: | | |
export $(cat .github/workflows/version.env | xargs) | |
echo "major_version=${MAJOR_VERSION}" >> $GITHUB_OUTPUT | |
echo "minor_version=${{ needs.build_number.outputs.number }}" >> $GITHUB_OUTPUT | |
- name: Build internal release | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
ORG_GRADLE_PROJECT_version_code: ${{ steps.vars.outputs.minor_version }} | |
ORG_GRADLE_PROJECT_version_name: "${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}" | |
ORG_GRADLE_PROJECT_countly_url: ${{ secrets.COUNTLY_URL_PROD }} | |
ORG_GRADLE_PROJECT_countly_app_key: ${{ secrets.COUNTLY_APP_KEY_PROD }} | |
run: | | |
export $(cat .github/workflows/targets/${{ matrix.target }}.env | xargs) | |
./gradlew :instances:app:assembleInternal :instances:app:bundleInternal | |
- name: Sign AAB | |
id: sign_aab | |
uses: r0adkll/sign-android-release@v1 | |
with: | |
releaseDirectory: instances/app/build/outputs/bundle/internal | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
alias: ${{ secrets.KEY_ALIAS }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
keyPassword: ${{ secrets.KEY_ALIAS_PASSWORD }} | |
- name: Sign APK | |
id: sign_apk | |
uses: r0adkll/sign-android-release@v1 | |
with: | |
releaseDirectory: instances/app/build/outputs/apk/internal | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
alias: ${{ secrets.KEY_ALIAS }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
keyPassword: ${{ secrets.KEY_ALIAS_PASSWORD }} | |
- name: Copy artifacts | |
id: artifacts_copy | |
run: | | |
mkdir artifacts | |
cp ${{ steps.sign_aab.outputs.signedReleaseFile }} artifacts/flipper-zero-${{ matrix.target }}.aab | |
cp ${{ steps.sign_apk.outputs.signedReleaseFile }} artifacts/flipper-zero-${{ matrix.target }}.apk | |
cp instances/app/build/outputs/mapping/internal/mapping.txt artifacts/mapping-${{ matrix.target }}.txt | |
echo "path=artifacts/" >> $GITHUB_OUTPUT | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifacts-${{ matrix.target }} | |
path: ${{ steps.artifacts_copy.outputs.path }} | |
build_internal_release_gms_wearos: | |
name: Build Internal AAB and APK WearOS | |
runs-on: ubuntu-latest | |
needs: build_number | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Set up JDK 1.17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: 'Set variables' | |
id: vars | |
run: | | |
export $(cat .github/workflows/version.env | xargs) | |
echo "major_version=${MAJOR_VERSION}" >> $GITHUB_OUTPUT | |
echo "minor_version=${{ needs.build_number.outputs.number_wearos }}" >> $GITHUB_OUTPUT | |
- name: Build internal release | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
ORG_GRADLE_PROJECT_version_code: ${{ steps.vars.outputs.minor_version }} | |
ORG_GRADLE_PROJECT_version_name: "${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}" | |
run: | | |
export $(cat .github/workflows/targets/wearos.env | xargs) | |
./gradlew :instances:wearable:assembleInternal :instances:wearable:bundleInternal | |
- name: Sign Wear AAB | |
id: sign_wear_aab | |
uses: r0adkll/sign-android-release@v1 | |
with: | |
releaseDirectory: instances/wearable/build/outputs/bundle/internal | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
alias: ${{ secrets.KEY_ALIAS }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
keyPassword: ${{ secrets.KEY_ALIAS_PASSWORD }} | |
- name: Sign Wear APK | |
id: sign_wear_apk | |
uses: r0adkll/sign-android-release@v1 | |
with: | |
releaseDirectory: instances/wearable/build/outputs/apk/internal | |
signingKeyBase64: ${{ secrets.SIGNING_KEY }} | |
alias: ${{ secrets.KEY_ALIAS }} | |
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }} | |
keyPassword: ${{ secrets.KEY_ALIAS_PASSWORD }} | |
- name: Copy artifacts | |
id: artifacts_copy | |
run: | | |
mkdir artifacts | |
cp ${{ steps.sign_wear_aab.outputs.signedReleaseFile }} artifacts/flipper-zero-wearos.aab | |
cp ${{ steps.sign_wear_apk.outputs.signedReleaseFile }} artifacts/flipper-zero-wearos.apk | |
cp instances/wearable/build/outputs/mapping/internal/mapping.txt artifacts/mapping-wearos.txt | |
echo "path=artifacts/" >> $GITHUB_OUTPUT | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifacts-wearos | |
path: ${{ steps.artifacts_copy.outputs.path }} | |
upload_to_github: | |
name: Upload to Github Releases | |
runs-on: ubuntu-latest | |
needs: [ build_internal_release, build_internal_release_gms_wearos, build_number ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- uses: actions/download-artifact@v3 | |
id: download-gh_gms | |
with: | |
name: artifacts-gh_gms | |
path: download/gh_gms | |
- uses: actions/download-artifact@v3 | |
id: download-gh_nogms | |
with: | |
name: artifacts-gh_nogms | |
path: download/gh_nogms | |
- uses: actions/download-artifact@v3 | |
id: download-googleplay | |
with: | |
name: artifacts-googleplay | |
path: download/googleplay | |
- uses: actions/download-artifact@v3 | |
id: download-wearos | |
with: | |
name: artifacts-wearos | |
path: download/wearos | |
- name: 'Set variables' | |
id: vars | |
run: | | |
export $(cat .github/workflows/version.env | xargs) | |
echo "major_version=${MAJOR_VERSION}" >> $GITHUB_OUTPUT | |
echo "minor_version=${{ needs.build_number.outputs.number }}" >> $GITHUB_OUTPUT | |
- name: 'Copy artifacts' | |
id: artifacts_copy | |
run: | | |
mkdir artifacts | |
cp ${{steps.download-gh_gms.outputs.download-path}}/* artifacts/ | |
cp ${{steps.download-gh_nogms.outputs.download-path}}/* artifacts/ | |
cp ${{steps.download-googleplay.outputs.download-path}}/* artifacts/ | |
cp ${{steps.download-wearos.outputs.download-path}}/* artifacts/ | |
echo "path=artifacts/" >> $GITHUB_OUTPUT | |
- name: Install zip | |
uses: montudor/action-zip@v1 | |
- name: Prepare mapping | |
id: mappings | |
run: | | |
mkdir mappings | |
for target in "gh_gms" "gh_nogms" "googleplay" "wearos"; do \ | |
mv "${{ steps.artifacts_copy.outputs.path }}/mapping-${target}.txt" mappings/ ; done | |
zip -qq -r mappings.zip mappings | |
echo "archive=mappings.zip" >> $GITHUB_OUTPUT | |
- name: Prepare other builds | |
id: other | |
run: | | |
mkdir other | |
mv "${{ steps.artifacts_copy.outputs.path }}/flipper-zero-googleplay.apk" other/ | |
mv ${{ steps.artifacts_copy.outputs.path }}/*.aab other/ | |
zip -qq -r other.zip other | |
echo "archive=other.zip" >> $GITHUB_OUTPUT | |
- name: Artefact build beautifier | |
id: beautifier | |
run: | | |
mv ${{ steps.artifacts_copy.outputs.path }}/flipper-zero-gh_gms.apk ${{ steps.artifacts_copy.outputs.path }}/flipper-zero-gms-${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}.apk | |
mv ${{ steps.artifacts_copy.outputs.path }}/flipper-zero-gh_nogms.apk ${{ steps.artifacts_copy.outputs.path }}/flipper-zero-nogms-${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}.apk | |
- name: Create internal Release | |
id: create_internal_release | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
files: | | |
${{ steps.mappings.outputs.archive }} | |
${{ steps.other.outputs.archive }} | |
${{ steps.artifacts_copy.outputs.path }}/flipper-zero-gms-${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}.apk | |
${{ steps.artifacts_copy.outputs.path }}/flipper-zero-nogms-${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }}.apk | |
tag_name: ${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }} | |
name: Flipper App ${{ steps.vars.outputs.major_version }}.${{ steps.vars.outputs.minor_version }} | |
draft: false | |
prerelease: true | |
upload_to_playstore: | |
name: Upload to Play Store | |
runs-on: ubuntu-latest | |
needs: [ build_internal_release ] | |
steps: | |
- uses: actions/download-artifact@v3 | |
id: download-googleplay | |
with: | |
name: artifacts-googleplay | |
- name: Upload to Play Store | |
uses: r0adkll/[email protected] | |
with: | |
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_PUBLISHER_JSON }} | |
packageName: com.flipperdevices.app | |
releaseFiles: ${{steps.download-googleplay.outputs.download-path}}/flipper-zero-googleplay.aab | |
track: beta | |
mappingFile: ${{steps.download-googleplay.outputs.download-path}}/mapping-googleplay.txt | |
upload_to_playstore_wearos: | |
name: Upload Wear OS to Play Store | |
runs-on: ubuntu-latest | |
needs: [ build_internal_release_gms_wearos ] | |
steps: | |
- uses: actions/download-artifact@v3 | |
id: download-wearos | |
with: | |
name: artifacts-wearos | |
- name: Upload to Play Store Wear OS | |
uses: r0adkll/[email protected] | |
with: | |
serviceAccountJsonPlainText: ${{ secrets.GOOGLE_PLAY_PUBLISHER_JSON }} | |
packageName: com.flipperdevices.app | |
releaseFiles: ${{steps.download-wearos.outputs.download-path}}/flipper-zero-wearos.aab | |
track: wear:beta | |
mappingFile: ${{steps.download-wearos.outputs.download-path}}/mapping-wearos.txt |