workflow
This commit is contained in:
parent
86dd4d8bf3
commit
c3be39854a
1 changed files with 6 additions and 5 deletions
11
.github/workflows/publish.yml
vendored
11
.github/workflows/publish.yml
vendored
|
@ -11,17 +11,18 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Download Signed AAB
|
- name: Download Signed AAB
|
||||||
uses: actions/download-artifact@v4
|
uses: dawidd6/action-download-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
workflow: build.yml
|
||||||
|
workflow_conclusion: success
|
||||||
name: signed-aab
|
name: signed-aab
|
||||||
path: ./release
|
path: ./release
|
||||||
|
|
||||||
- name: Extract Signed AAB
|
|
||||||
run: unzip ./release/signed-aab.zip -d ./release/signed-aab
|
|
||||||
|
|
||||||
- name: Download Debug Symbols
|
- name: Download Debug Symbols
|
||||||
uses: actions/download-artifact@v4
|
uses: dawidd6/action-download-artifact@v2
|
||||||
with:
|
with:
|
||||||
|
workflow: build.yml
|
||||||
|
workflow_conclusion: success
|
||||||
name: debug-symbols
|
name: debug-symbols
|
||||||
path: ./release/symbols
|
path: ./release/symbols
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue