workflow
This commit is contained in:
parent
c48eacae13
commit
67b431d5d4
2 changed files with 14 additions and 2 deletions
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
|
@ -149,6 +149,18 @@ jobs:
|
||||||
name: signed-aab
|
name: signed-aab
|
||||||
path: ${{ steps.sign_aab.outputs.signedFiles }}
|
path: ${{ steps.sign_aab.outputs.signedFiles }}
|
||||||
|
|
||||||
|
- name: Upload Mapping File
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: mapping-file
|
||||||
|
path: app-release/app/build/outputs/mapping/release/mapping.txt
|
||||||
|
|
||||||
|
- name: Upload Debug Symbols
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: debug-symbols
|
||||||
|
path: app-release/app/intermediates/merged_native_libs/release/out/lib
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Download Signed AAB
|
- name: Download Signed AAB
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: signed-aab
|
name: signed-aab
|
||||||
path: ./release
|
path: ./release
|
||||||
|
@ -38,5 +38,5 @@ jobs:
|
||||||
releaseFiles: "./release/*"
|
releaseFiles: "./release/*"
|
||||||
track: "production"
|
track: "production"
|
||||||
releaseStatus: "completed"
|
releaseStatus: "completed"
|
||||||
whatsNewDirectory: ${{ env.WHATS_NEW }}
|
whatsNew: ${{ env.WHATS_NEW }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue