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