mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-31 05:29:58 +01:00
Fix Nightly builds not bailing on failure (#1289)
This commit is contained in:
parent
203ce96d0b
commit
ca0a48196c
13
.github/workflows/build_and_deploy.yaml
vendored
13
.github/workflows/build_and_deploy.yaml
vendored
@ -120,13 +120,12 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Deploy
|
name: Deploy
|
||||||
if: |
|
if: |
|
||||||
(
|
always() && !failure() && !cancelled() && ((
|
||||||
github.event_name != 'workflow_dispatch' &&
|
github.event_name != 'workflow_dispatch' &&
|
||||||
github.event.release.prerelease != true
|
github.event.release.prerelease != true
|
||||||
) || (
|
) || (
|
||||||
always() && !failure() && !cancelled() && inputs.deploy &&
|
inputs.deploy && (inputs.macos || inputs.windows || inputs.linux)
|
||||||
(inputs.macos || inputs.windows || inputs.linux)
|
))
|
||||||
)
|
|
||||||
environment: packages.element.io
|
environment: packages.element.io
|
||||||
steps:
|
steps:
|
||||||
- name: Download artifacts
|
- name: Download artifacts
|
||||||
@ -161,12 +160,12 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
arch: [amd64, arm64]
|
arch: [amd64, arm64]
|
||||||
if: |
|
if: |
|
||||||
(
|
always() && !failure() && !cancelled() && ((
|
||||||
github.event_name != 'workflow_dispatch' &&
|
github.event_name != 'workflow_dispatch' &&
|
||||||
github.event.release.prerelease != true
|
github.event.release.prerelease != true
|
||||||
) || (
|
) || (
|
||||||
always() && !failure() && !cancelled() && inputs.deploy && inputs.linux
|
inputs.deploy && inputs.linux
|
||||||
)
|
))
|
||||||
uses: ./.github/workflows/reprepro.yaml
|
uses: ./.github/workflows/reprepro.yaml
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
with:
|
with:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user