Skip to content

Commit

Permalink
Updated if condition of docker job
Browse files Browse the repository at this point in the history
Only for tags starting with v prefix
  • Loading branch information
Thomas Dupont committed Jan 19, 2022
1 parent 7b33c2b commit cd9bb15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ jobs:
- test-unit
- test-integration
- validate-components
# Only run on tags for now
if: ${{ github.ref_type == 'tag' }}
# Only run on tags starting with v prefix for now
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit cd9bb15

Please sign in to comment.