From b0f1ad91bb2c34efb203c813e017b473b1d096f1 Mon Sep 17 00:00:00 2001 From: Logan Drescher Date: Sun, 22 Sep 2024 09:55:31 -0400 Subject: [PATCH] Removed unnecessary if condition --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f713a2..8eef205 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -132,9 +132,9 @@ jobs: ############################################# ## Check for Deploy, Stop if not Deploying ############################################# - - name: Cancel build if the specifications already have the latest version of COPASI + - name: Cancel build if not for release uses: andymckay/cancel-action@0.2 - if: github.event_name == 'schedule' && steps.update-simulator-version.outputs.needDeploy != 'true' + if: steps.update-simulator-version.outputs.needDeploy != 'true' #*******************************************# #* Release *#