Skip to content

Commit

Permalink
Merge pull request #274 from eclipse-tractusx/ci/docker-helm
Browse files Browse the repository at this point in the history
ci(docker): updated workflow to match on pattern starting with numbers
  • Loading branch information
mhellmeier authored Feb 26, 2024
2 parents c962012 + 4f08b0a commit 733a1c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-image-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ on:
- main
# trigger events for SemVer like tags
tags:
- '*.*.*'
- '*.*.*-*'
# match e.g. 1.1.1 and 1.1.1-rc1
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-*'
pull_request:
branches:
- main
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build-image-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ on:
- main
# trigger events for SemVer like tags
tags:
- '*.*.*'
- '*.*.*-*'
# match e.g. 1.1.1 and 1.1.1-rc1
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-*'
pull_request:
branches:
- main
Expand Down

0 comments on commit 733a1c3

Please sign in to comment.