diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 0c7cce4..12c1be5 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -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