From 933dfb526b930c3c7c53ca2406faad951bac786c Mon Sep 17 00:00:00 2001 From: jellespijker Date: Tue, 12 Sep 2023 23:07:19 +0200 Subject: [PATCH] only update nightlies when requested Contribute to CURA-10866 --- .github/workflows/installers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index af4d81e241..73473fec31 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -111,7 +111,7 @@ jobs: # Run and update nightly release when the nightly input is set to true or if the schedule is triggered update-nightly-release: - if: ${{ always() && (! cancelled()) && contains(needs.*.result, 'success') && (! contains(needs.*.result, 'failure')) && (inputs.nightly || github.event_name == 'schedule') }} + if: ${{ inputs.nightly || github.event_name == 'schedule' }} runs-on: ubuntu-latest needs: [ windows-installer, linux-installer, macos-installer ] # needs: [ windows-installer, linux-installer, macos-installer, macos-arm-installer ]