Update repository_dispatch.yml to save build artifacts on fail
This commit is contained in:
parent
bc98597dc3
commit
5584108c33
1 changed files with 6 additions and 0 deletions
6
.github/workflows/repository_dispatch.yml
vendored
6
.github/workflows/repository_dispatch.yml
vendored
|
|
@ -16,6 +16,12 @@ jobs:
|
||||||
GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
|
GIT_AUTHOR_EMAIL: ${{ secrets.PUSH_EMAIL }}
|
||||||
GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
|
GIT_COMMITTER_EMAIL: ${{ secrets.PUSH_EMAIL }}
|
||||||
run: bash ./tools/repository_dispatch.sh
|
run: bash ./tools/repository_dispatch.sh
|
||||||
|
- name: Upload build
|
||||||
|
if: failure()
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: build
|
||||||
|
path: build
|
||||||
- name: Upload archive
|
- name: Upload archive
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue