CI: Run upload and attach independent of failure
This commit is contained in:
parent
e1fbe9ae54
commit
3e9a1776a1
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@ -1427,7 +1427,7 @@ jobs:
|
||||
|
||||
upload:
|
||||
name: Upload
|
||||
if: github.repository == 'strawberrymusicplayer/strawberry' && (github.event_name == 'release' || (github.event_name == 'push' && github.event.pull_request.head.repo.fork == false && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/ci')))
|
||||
if: (success() || failure()) && github.repository == 'strawberrymusicplayer/strawberry' && (github.event_name == 'release' || (github.event_name == 'push' && github.event.pull_request.head.repo.fork == false && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/ci')))
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- build-opensuse
|
||||
@ -1476,7 +1476,7 @@ jobs:
|
||||
|
||||
attach:
|
||||
name: Attach to release
|
||||
if: github.event_name == 'release'
|
||||
if: (success() || failure()) && github.event_name == 'release'
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- build-opensuse
|
||||
|
Loading…
x
Reference in New Issue
Block a user