From 35aa6c3e0ac36007f74f20272b26041440e94a7e Mon Sep 17 00:00:00 2001 From: Mieszko Grodzicki Date: Sat, 31 Dec 2022 13:03:48 +0100 Subject: [PATCH] Id fix --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e09601..93122f7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,15 +28,14 @@ jobs: - name: Checkout branch patch_change run: git checkout patch_change - name: Run action - id: action uses: ./action/ # test with semver violation - name: Checkout branch major_change run: git checkout major_change - name: Run action - id: action + id: action_major uses: ./action/ continue-on-error: true - name: Check if the action failed - if: steps.action.outcome != 'failure' + if: steps.action_major.outcome != 'failure' run: exit 1