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 16, 2022
1 parent fecacad commit b475dfe
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:
loan-agreement-build-and-push:
Expand All @@ -25,9 +26,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

recommentdation-build-and-push:
name: Build JAR and push Docker image
Expand All @@ -48,6 +49,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 b475dfe

Please sign in to comment.