From 83a4537d654b97cee09853cd347e5a5eeead2131 Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Sat, 15 Jul 2023 01:50:15 +0200 Subject: [PATCH] Update .gitea/workflows/build.yml --- .gitea/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5b2006e..db0a189 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -17,6 +17,12 @@ jobs: # script-file -> The key name which contains the output (saved by the step - see Publish JS Filename Step) js-file: ${{ steps.publish-js-filename.outputs.script-file }} steps: + - name: Error on purpose + id: failingstep + run: thisisnocommand + - name: Continue with this step anyway... + if: $steps.failingstep.outcome == 'failure' + run: echo Still running... - name: Checkout Code uses: actions/checkout@v3 - name: Install NodeJS