Skip to content

Commit

Permalink
Pbe 2776 video update the demo app on google play (#1108)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandar-apostolov authored Jun 7, 2024
1 parent b55c0a8 commit e3be2bf
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 10 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/artifact-upload.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build and Upload AAB

on:
push:
branches:
- develop
workflow_dispatch:

jobs:
build:
name: Build and Upload AAB
runs-on: ubuntu-22.04

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 17

- name: Prepare environment
run: |
echo "${{ secrets.RELEASE_KEYSTORE }}" > .sign/release.keystore.asc
gpg -d --passphrase "${{ secrets.PASSPHRASE }}" --batch .sign/release.keystore.asc > .sign/release.keystore
echo "${{ secrets.RELEASE_KEYSTORE_PROPERTIES }}" > .sign/keystore.properties.asc
gpg -d --passphrase "${{ secrets.PASSPHRASE }}" --batch .sign/keystore.properties.asc > .sign/keystore.properties
echo "${{ secrets.SERVICE_ACCOUNT_CREDENTIALS }}" > .sign/service-account-credentials.json.asc
gpg -d --passphrase "${{ secrets.PASSPHRASE }}" --batch .sign/service-account-credentials.json.asc > .sign/service-account-credentials.json
echo "${{ secrets.ENV_PROPERTIES }}" > .env.properties
- name: Build release bundle
run: ./gradlew bundleRelease --stacktrace

- name: Upload AAB as artifact
uses: actions/upload-artifact@v2
with:
name: app-bundle
path: app/build/outputs/bundle/release/*.aab
11 changes: 1 addition & 10 deletions .github/workflows/internal-app-distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,4 @@ jobs:
echo "${{ secrets.ENV_PROPERTIES }}" > .env.properties
- name: Build release bundle
run: ./gradlew bundleRelease --stacktrace

- name: Upload AAB as artifact
uses: actions/upload-artifact@v2
with:
name: app-bundle
path: app/build/outputs/bundle/release/*.aab

- name: Publish Bundle
run: bash ./gradlew publishBundle --stacktrace
run: ./gradlew bundleRelease --stacktrace

0 comments on commit e3be2bf

Please sign in to comment.