Skip to content

Commit

Permalink
Use correct folder when uploading bundle as AAB (#1109)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandar-apostolov authored Jun 7, 2024
1 parent e3be2bf commit 3c1c891
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/artifact-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: app-bundle
path: app/build/outputs/bundle/release/*.aab
path: demo-app/build/outputs/bundle/productionRelease/demo-app-production-release.aab
7 changes: 2 additions & 5 deletions .github/workflows/internal-app-distribute.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,11 @@ jobs:
runs-on: ubuntu-22.04
steps:
- 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
Expand All @@ -28,6 +26,5 @@ jobs:
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: Publish Bundle
run: bash ./gradlew publishBundle --stacktrace

0 comments on commit 3c1c891

Please sign in to comment.