From ee9392b59ede5ed2888ef9b48118edbe5d82bed8 Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Sat, 15 Jul 2023 02:03:17 +0200 Subject: [PATCH] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 12c1be5..1bebd96 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -19,9 +19,9 @@ jobs: steps: - name: Error on purpose id: failingstep - run: thisisnocommand + run: exit 1 - name: Continue with this step anyway - if: ${{ failure() && $steps.failingstep.outcome == 'failure' }} + if: ${{ failure() && $steps.failingstep.conclusion == 'failure' }} run: echo "Still running..." - name: Checkout Code uses: actions/checkout@v3