mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
Extract merged native libs directly in GP release job
This commit is contained in:
parent
4231506c48
commit
966a3c676c
1 changed files with 5 additions and 28 deletions
33
.github/workflows/create_release.yml
vendored
33
.github/workflows/create_release.yml
vendored
|
@ -177,9 +177,10 @@ jobs:
|
|||
with:
|
||||
name: m3_lightmeter_apk
|
||||
|
||||
extract-merged-native-libs:
|
||||
name: Extract merged native libraries
|
||||
needs: [build]
|
||||
create-google-play-release:
|
||||
name: Create Google Play release
|
||||
if: github.ref_name == 'main'
|
||||
needs: [generate-release-notes]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download app bundle
|
||||
|
@ -192,28 +193,6 @@ jobs:
|
|||
unzip app-prod-release.aab
|
||||
(cd base/lib && zip -r "$OLDPWD/merged_native_libs.zip" .)
|
||||
|
||||
- name: Upload merged native libs to artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: merged_native_libs
|
||||
path: merged_native_libs.zip
|
||||
|
||||
create-google-play-release:
|
||||
name: Create Google Play release
|
||||
if: github.ref_name == 'main'
|
||||
needs: [generate-release-notes, extract-merged-native-libs]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download app bundle
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: m3_lightmeter_bundle
|
||||
|
||||
- name: Download merged native libs
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: merged_native_libs
|
||||
|
||||
- name: Download release notes
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
|
@ -253,9 +232,7 @@ jobs:
|
|||
if: ${{ always() }}
|
||||
uses: geekyeggo/delete-artifact@v2
|
||||
with:
|
||||
name: |
|
||||
m3_lightmeter_bundle
|
||||
merged_native_libs
|
||||
name: m3_lightmeter_bundle
|
||||
|
||||
cleanup:
|
||||
name: Cleanup
|
||||
|
|
Loading…
Reference in a new issue