From c42310bc12103d8b42560a1160cca359bec68b80 Mon Sep 17 00:00:00 2001 From: Julien GALET Date: Thu, 18 Nov 2021 17:02:00 +0100 Subject: [PATCH] fix: CI/CD condition for deploy job --- .github/workflows/ci_cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 987d40f..fb8b622 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -39,7 +39,7 @@ jobs: name: Deploy needs: - build - if: ${{ contains(github.ref, 'refs/tags') && contains(github.ref, 'refs/heads/develop') }} + if: ${{ contains(github.ref, 'refs/tags') || contains(github.ref, 'refs/heads/develop') }} runs-on: ubuntu-latest steps: - name: Checkout repository