mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 15:00:40 +00:00
ML-61 Download each artifact separately (#102)
* Download each artifact separately * typo * Updated setup-java action * Extract merged native libs directly in GP release job
This commit is contained in:
parent
b9412c7441
commit
d41fa6fa84
1 changed files with 16 additions and 29 deletions
43
.github/workflows/create_release.yml
vendored
43
.github/workflows/create_release.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
with:
|
||||
submodules: recursive
|
||||
|
||||
- uses: actions/setup-java@v2
|
||||
- uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: "zulu"
|
||||
java-version: "11"
|
||||
|
@ -152,16 +152,19 @@ jobs:
|
|||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Download apk & release notes
|
||||
- name: Download apk
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: |
|
||||
m3_lightmeter_apk
|
||||
whatsnew-en-US
|
||||
name: m3_lightmeter_apk
|
||||
|
||||
- name: Rename apk
|
||||
run: mv app-prod-release.apk m3_lightmeter.apk
|
||||
|
||||
- name: Download release notes
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: whatsnew-en-US
|
||||
|
||||
- uses: ncipollo/release-action@v1.12.0
|
||||
with:
|
||||
artifacts: "m3_lightmeter.apk"
|
||||
|
@ -174,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
|
||||
|
@ -189,25 +193,10 @@ 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 & merged native libs
|
||||
- name: Download release notes
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: |
|
||||
m3_lightmeter_bundle
|
||||
merged_native_libs
|
||||
whatsnew-en-US
|
||||
name: whatsnew-en-US
|
||||
|
||||
- name: Move release notes to a folder
|
||||
run: |
|
||||
|
@ -243,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