Skip to content

Commit

Permalink
fix: CI/CD condition for deploy job
Browse files Browse the repository at this point in the history
  • Loading branch information
juliengalet committed Nov 18, 2021
1 parent 7d24ea8 commit c42310b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c42310b

Please sign in to comment.