From b3895190ceae5310122d7eada75af5d62dc08dea Mon Sep 17 00:00:00 2001 From: MatthieuDartiailh Date: Wed, 10 Jun 2020 23:31:30 -0400 Subject: [PATCH] cis: typo --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3543aae..cb64e545 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,8 +83,8 @@ jobs: runs-on: ubuntu-latest steps: - name: Mark the job as a success - if: needs.tests.result == "success" + if: needs.tests.result == 'success' run: exit 0 - name: Mark the job as a failure - if: needs.tests.result == "failure" + if: needs.tests.result == 'failure' run: exit 1