Skip to content

Commit

Permalink
building camunda 8 branch as well
Browse files Browse the repository at this point in the history
  • Loading branch information
Luc Weinbrecht committed May 20, 2022
1 parent 4f56300 commit c73c5e1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- 'main'
- 'camunda-8'

jobs:
build-test-utils:
Expand Down Expand Up @@ -76,9 +77,9 @@ jobs:
- name: Login to Docker Hub
run: docker login -u ${{ secrets.DOCKER_USER }} -p '${{ secrets.DOCKER_TOKEN }}'
- name: Build Docker image
run: docker build -t ${{env.repo}}-loan-agreement .
run: docker build -t ${{env.repo}}-loan-agreement-camunda-8 .
- name: Publish Docker image
run: docker push ${{env.repo}}-loan-agreement
run: docker push ${{env.repo}}-loan-agreement-camunda-8

recommendation-build:
name: Build Recommendation JAR
Expand Down Expand Up @@ -131,6 +132,6 @@ jobs:
- name: Login to Docker Hub
run: docker login -u ${{ secrets.DOCKER_USER }} -p '${{ secrets.DOCKER_TOKEN }}'
- name: Build Docker image
run: docker build -t ${{env.repo}}-recommendation .
run: docker build -t ${{env.repo}}-recommendation-camunda-8 .
- name: Publish Docker image
run: docker push ${{env.repo}}-recommendation
run: docker push ${{env.repo}}-recommendation-camunda-8

0 comments on commit c73c5e1

Please sign in to comment.