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: push:
branches: branches:
- main - main
paths-ignore: #paths-ignore:
- '.gitea/workflows/*' # - '.gitea/workflows/*'
jobs: jobs:
Build: Build:
@@ -20,9 +20,9 @@ jobs:
- name: Error on purpose - name: Error on purpose
id: failingstep id: failingstep
run: thisisnocommand run: thisisnocommand
- name: Continue with this step anyway... - name: Continue with this step anyway
if: failure() && $steps.failingstep.outcome == 'failure' if: ${{ failure() && $steps.failingstep.outcome == 'failure' }}
run: echo Still running... run: echo "Still running..."
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install NodeJS - name: Install NodeJS