Skip to content

Commit

Permalink
https://jira.catena-x.net/browse/KA-328 wrong folder names in build
Browse files Browse the repository at this point in the history
  • Loading branch information
drcgjung committed Aug 22, 2023
1 parent 9612565 commit 6fe1df7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ jobs:
- name: Conforming Agent Container Build and push
uses: docker/build-push-action@v3
with:
context: conforming-agent/.
file: conforming-agent/src/main/docker/Dockerfile
context: conforming/.
file: conforming/src/main/docker/Dockerfile
# Build image for verification purposes on every trigger event. Only push if event is not a PR
push: ${{ (github.repository == 'catenax-ng/product-agents' || github.repository == 'eclipse-tractusx/knowledge-agents') && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) }}
tags: ${{ steps.meta-conf.outputs.tags }}
Expand All @@ -154,8 +154,8 @@ jobs:
- name: Provisioning Agent Container Build and push
uses: docker/build-push-action@v3
with:
context: provisioning-agent/.
file: provisioning-agent/src/main/docker/Dockerfile
context: provisioning/.
file: provisioning/src/main/docker/Dockerfile
# Build image for verification purposes on every trigger event. Only push if event is not a PR
push: ${{ (github.repository == 'catenax-ng/product-agents' || github.repository == 'eclipse-tractusx/knowledge-agents') && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) }}
tags: ${{ steps.meta-prov.outputs.tags }}
Expand All @@ -180,8 +180,8 @@ jobs:
- name: Remoting Agent Container Build and push
uses: docker/build-push-action@v3
with:
context: remoting-agent/.
file: remoting-agent/src/main/docker/Dockerfile
context: remoting/.
file: remoting/src/main/docker/Dockerfile
# Build image for verification purposes on every trigger event. Only push if event is not a PR
push: ${{ (github.repository == 'catenax-ng/product-agents' || github.repository == 'eclipse-tractusx/knowledge-agents') && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) }}
tags: ${{ steps.meta-remote.outputs.tags }}
Expand Down

0 comments on commit 6fe1df7

Please sign in to comment.