enable docker image builds on feature branches

This commit is contained in:
jonaswinkler 2021-01-26 15:55:47 +01:00
parent 3b5d55c428
commit f0d49a1382

View File

@ -225,7 +225,7 @@ jobs:
# build and push image to docker hub.
build-docker-image:
if: github.event_name == 'push' && (github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/ng-'))
if: github.event_name == 'push' && (startsWith(github.ref, 'refs/heads/feature-') || github.ref == 'refs/heads/dev' || startsWith(github.ref, 'refs/tags/ng-'))
runs-on: ubuntu-latest
needs: [frontend, tests]
steps: