chore(mobile): upload android aab

This commit is contained in:
DIYgod 2025-04-07 22:22:04 +08:00
parent bb7fa92d45
commit 653179485f
No known key found for this signature in database
1 changed files with 9 additions and 0 deletions

View File

@ -71,8 +71,17 @@ jobs:
run: eas build --platform android --profile ${{ github.event.inputs.profile || 'preview' }} --local --output=${{ github.workspace }}/build.apk
- name: 📤 Upload apk Artifact
if: github.event.inputs.profile != 'production'
uses: actions/upload-artifact@v4
with:
name: app-android
path: ${{ github.workspace }}/build.apk
retention-days: 90
- name: 📤 Upload aab Artifact
if: github.event.inputs.profile == 'production'
uses: actions/upload-artifact@v4
with:
name: aab-android
path: ${{ github.workspace }}/build.aab
retention-days: 90