Skip to content

Commit

Permalink
PERA-1047 :: Add in app bundle publish test (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltchuang authored Oct 29, 2024
1 parent 11d995e commit de11766
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Pull Request Template

## Description
Please provide a brief description of the changes made in this pull request.
- Please provide a brief description of the changes made in this pull request.

## Related Issues
List any related issues or tickets that this pull request addresses.
- List any related issues or tickets that this pull request addresses.
- For example, closes https://algorandfoundation.atlassian.net/browse/PERA-#

## Checklist
- [ ] Have you tested your changes locally?
Expand All @@ -14,4 +15,4 @@ List any related issues or tickets that this pull request addresses.
- [ ] Have you updated any relevant dependencies?

## Additional Notes
Add any additional notes or comments that may be helpful for reviewers.
- Add any additional notes or comments that may be helpful for reviewers.
15 changes: 15 additions & 0 deletions .github/workflows/android-app-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,18 @@ jobs:
name: "app-lint-results"
path: ./**/build/reports/**
overwrite: true

android-bundle-publish-test:
name: "Android App Bundle Publish Test"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Install JDK 17"
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: "17"
cache: "gradle"
- name: "Run App Bundle Publish Test"
run: ./gradlew packageProdReleaseBundle
2 changes: 1 addition & 1 deletion versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ext {
]

peraApplication = [
versionCode: 122,
versionCode: 123,
versionName: "5.12.0"
]
}

0 comments on commit de11766

Please sign in to comment.