Workflow
This commit is contained in:
parent
69d4291221
commit
7761b6c149
2 changed files with 3 additions and 8 deletions
7
.github/workflows/main.yml
vendored
7
.github/workflows/main.yml
vendored
|
@ -149,16 +149,11 @@ jobs:
|
|||
name: signed-aab
|
||||
path: ${{ steps.sign_aab.outputs.signedFiles }}
|
||||
|
||||
- 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
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: debug-symbols
|
||||
path: ./artifacts/debug-symbols.zip
|
||||
path: app-release/app/build/intermediates/merged_native_libs/release/mergeReleaseNativeLibs/out/lib/*
|
||||
|
||||
|
||||
|
||||
|
|
4
.github/workflows/publish.yml
vendored
4
.github/workflows/publish.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
path: ./release/symbols
|
||||
|
||||
- name: Zip Symbols
|
||||
run: zip -r symbols.zip ./release/symbols
|
||||
run: zip -r symbols.zip ./release/symbols/*
|
||||
|
||||
- name: Use What's New Message
|
||||
run: |
|
||||
|
@ -38,7 +38,7 @@ jobs:
|
|||
cp whatsnew.txt ./release/whatsnew/whatsnew-en-US
|
||||
|
||||
- name: List Downloaded Files
|
||||
run: ls -l ./release
|
||||
run: ls -l ./release/symbols
|
||||
|
||||
- name: Create service_account.json
|
||||
run: echo '${{ secrets.SERVICE_ACCOUNT_JSON }}' > service_account.json
|
||||
|
|
Loading…
Reference in a new issue