From 023f5cc402638debdb82f311fd782b67d8d0f122 Mon Sep 17 00:00:00 2001 From: Artur Tagisow Date: Tue, 21 Jun 2022 15:25:34 +0200 Subject: [PATCH] fix: negation --- .github/workflows/deploy-vue-storefront-cloud.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-vue-storefront-cloud.yml b/.github/workflows/deploy-vue-storefront-cloud.yml index 3383ebca0..42593fbb1 100644 --- a/.github/workflows/deploy-vue-storefront-cloud.yml +++ b/.github/workflows/deploy-vue-storefront-cloud.yml @@ -134,7 +134,7 @@ jobs: if: always() steps: - name: Update deployment status (success) - if: !(contains(join(needs.*.result, ','), 'failure')) + if: not(contains(join(needs.*.result, ','), 'failure')) uses: chrnorm/deployment-status@v2 with: token: ${{ secrets.DEPLOYMENT_PERSONAL_ACCESS_TOKEN }}