Skip to content

Commit 67c73e4

Browse files
committed
build artifacts renamed.
1 parent 417318d commit 67c73e4

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/android-ci.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,23 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626

27+
# https://github.com/actions/checkout
2728
- name: 🚚 Get latest code
2829
uses: actions/checkout@v4
2930

30-
# https://github.com/actions/setup-java
31+
# https://github.com/actions/setup-java
3132
- name: ☕ Set up AWS Corretto JDK 17
3233
uses: actions/setup-java@v4
3334
with:
3435
distribution: corretto
3536
java-version: '17'
3637
architecture: x64
3738

39+
# Run Gradle tasks
3840
- name: Build module :library
3941
run: ./gradlew :library:lint :library:assembleRelease
4042

43+
# Run Gradle tasks
4144
- name: Build module :mobile
4245
run: ./gradlew :mobile:lint :mobile:bundleDebug
4346

@@ -46,18 +49,22 @@ jobs:
4649
id: retain-library-aar
4750
uses: actions/upload-artifact@v4
4851
with:
49-
name: androidx-github
52+
name: androidx-github-lib
5053
path: ./library/build/outputs/aar/*.aar
5154
retention-days: 14
5255

53-
- name: 📦 Retain Artifacts (Debug AAB)
56+
# https://github.com/actions/upload-artifact
57+
- name: 📦 Retain Artifacts (AAB)
5458
id: retain-app-debug-aab
5559
uses: actions/upload-artifact@v4
5660
with:
57-
name: androidx-github-lib
58-
path: ./mobile/build/outputs/bundle/debug/*.aab
61+
name: androidx-github
62+
path: |
63+
./mobile/build/outputs/bundle/release/*.aab
64+
./mobile/build/outputs/bundle/debug/*.aab
5965
retention-days: 14
6066

67+
# https://github.com/actions/upload-artifact
6168
- name: 📦 Retain Artifacts (Lint Results)
6269
id: retain-lint-results
6370
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)