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
28
.github/workflows/create_release.yml
vendored
28
.github/workflows/create_release.yml
vendored
|
@ -152,16 +152,19 @@ jobs:
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Download apk & release notes
|
- name: Download apk
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: |
|
name: m3_lightmeter_apk
|
||||||
m3_lightmeter_apk
|
|
||||||
whatsnew-en-US
|
|
||||||
|
|
||||||
- name: Rename apk
|
- name: Rename apk
|
||||||
run: mv app-prod-release.apk m3_lightmeter.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
|
- uses: ncipollo/release-action@v1.12.0
|
||||||
with:
|
with:
|
||||||
artifacts: "m3_lightmeter.apk"
|
artifacts: "m3_lightmeter.apk"
|
||||||
|
@ -201,13 +204,20 @@ jobs:
|
||||||
needs: [generate-release-notes, extract-merged-native-libs]
|
needs: [generate-release-notes, extract-merged-native-libs]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Download app bundle & merged native libs
|
- name: Download app bundle
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: |
|
name: m3_lightmeter_bundle
|
||||||
m3_lightmeter_bundle
|
|
||||||
merged_native_libs
|
- name: Download merged native libs
|
||||||
whatsnew-en-US
|
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
|
- name: Move release notes to a folder
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue