workflow
This commit is contained in:
parent
f84ee49c89
commit
61cf43f9f0
2 changed files with 29 additions and 3 deletions
8
.github/workflows/main.yml
vendored
8
.github/workflows/main.yml
vendored
|
@ -155,11 +155,17 @@ jobs:
|
||||||
name: mapping-file
|
name: mapping-file
|
||||||
path: app-release/app/build/outputs/mapping/release/mapping.txt
|
path: app-release/app/build/outputs/mapping/release/mapping.txt
|
||||||
|
|
||||||
|
- name: Compress Debug Symbols
|
||||||
|
run: |
|
||||||
|
mkdir -p ./artifacts
|
||||||
|
zip -r ./artifacts/debug-symbols.zip app-release/app/build/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib
|
||||||
|
|
||||||
- name: Upload Debug Symbols
|
- name: Upload Debug Symbols
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: debug-symbols
|
name: debug-symbols
|
||||||
path: app-release/app/intermediates/merged_native_libs/release/out/lib
|
path: ./artifacts/debug-symbols.zip
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
24
.github/workflows/publish.yml
vendored
24
.github/workflows/publish.yml
vendored
|
@ -11,11 +11,29 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Download Signed AAB
|
- name: Download Signed AAB
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: signed-aab
|
name: signed-aab
|
||||||
path: ./release
|
path: ./release
|
||||||
|
|
||||||
|
- name: Extract Signed AAB
|
||||||
|
run: unzip ./release/signed-aab.zip -d ./release/signed-aab
|
||||||
|
|
||||||
|
- name: Download Mapping File
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: mapping-file
|
||||||
|
path: ./release/mapping
|
||||||
|
|
||||||
|
- name: Extract Signed AAB
|
||||||
|
run: unzip ./release/mapping-file.zip -d ./release/mapping
|
||||||
|
|
||||||
|
- name: Download Debug Symbols
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: debug-symbols
|
||||||
|
path: ./release/symbols
|
||||||
|
|
||||||
- name: List Downloaded Files
|
- name: List Downloaded Files
|
||||||
run: ls -l ./release
|
run: ls -l ./release
|
||||||
|
|
||||||
|
@ -35,7 +53,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
serviceAccountJson: ${{ secrets.SERVICE_ACCOUNT_JSON }}
|
serviceAccountJson: ${{ secrets.SERVICE_ACCOUNT_JSON }}
|
||||||
packageName: "org.askartv.tv"
|
packageName: "org.askartv.tv"
|
||||||
releaseFiles: "./release/*"
|
releaseFiles: "./release/signed-aab/*"
|
||||||
|
mappingFile: "./release/mapping/mapping.txt"
|
||||||
|
debugSymbols: "./release/symbols"
|
||||||
track: "production"
|
track: "production"
|
||||||
releaseStatus: "completed"
|
releaseStatus: "completed"
|
||||||
whatsNew: ${{ env.WHATS_NEW }}
|
whatsNew: ${{ env.WHATS_NEW }}
|
||||||
|
|
Loading…
Reference in a new issue