Update .gitea/workflows/build.yml
Build Workflow / Build (push) Failing after 11s
Build Workflow / Deploy (push) Has been skipped

This commit is contained in:
2023-07-15 02:03:17 +02:00
parent 926e95eb57
commit ee9392b59e
+2 -2
View File
@@ -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