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

This commit is contained in:
2023-07-15 01:59:31 +02:00
parent 3236c781bf
commit 926e95eb57
+5 -5
View File
@@ -5,8 +5,8 @@ on:
push:
branches:
- main
paths-ignore:
- '.gitea/workflows/*'
#paths-ignore:
# - '.gitea/workflows/*'
jobs:
Build:
@@ -20,9 +20,9 @@ jobs:
- name: Error on purpose
id: failingstep
run: thisisnocommand
- name: Continue with this step anyway...
if: failure() && $steps.failingstep.outcome == 'failure'
run: echo Still running...
- name: Continue with this step anyway
if: ${{ failure() && $steps.failingstep.outcome == 'failure' }}
run: echo "Still running..."
- name: Checkout Code
uses: actions/checkout@v3
- name: Install NodeJS