mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
Download each artifact separately
This commit is contained in:
parent
82942c09e5
commit
69b67d3bb4
1 changed files with 20 additions and 10 deletions
30
.github/workflows/create_release.yml
vendored
30
.github/workflows/create_release.yml
vendored
|
@ -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"
|
||||
|
@ -201,19 +204,26 @@ jobs:
|
|||
needs: [generate-release-notes, extract-merged-native-libs]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download app bundle & merged native libs
|
||||
- name: Download app bundle
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: |
|
||||
m3_lightmeter_bundle
|
||||
merged_native_libs
|
||||
whatsnew-en-US
|
||||
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:
|
||||
name: whatsnew-en-US
|
||||
|
||||
- name: Move release notes to a folder
|
||||
run: |
|
||||
mkdir whatsnew
|
||||
mv whatsnew-en-US.md whatsnew
|
||||
|
||||
|
||||
- name: Create Google Play release
|
||||
id: create-google-play-release-step
|
||||
uses: r0adkll/upload-google-play@v1.1.1
|
||||
|
|
Loading…
Reference in a new issue