Skip to content

Commit

Permalink
Update enterprise image builds
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed Sep 18, 2024
1 parent c4a24f0 commit 824d58c
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,25 @@ jobs:
ghcr.io/${{ github.repository }}/backend:${{ env.VERSION }}
${{ fromJSON(inputs.isStableRelease) && 'ghcr.io/${{ github.repository }}/backend:latest' || null }}
platforms: linux/amd64,linux/arm64,linux/arm64/v8

- name: Build and Push Enterprise Frontend Docker Image
uses: docker/build-push-action@v6
with:
context: .
file: ./enterprise/frontend/Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository }}/enterprise-frontend:${{ env.VERSION }}
${{ fromJSON(inputs.isStableRelease) && 'ghcr.io/${{ github.repository }}/enterprise-frontend:latest' || null }}
platforms: linux/amd64,linux/arm64,linux/arm64/v8

- name: Build and Push Enterprise Backend Docker Image
uses: docker/build-push-action@v6
with:
context: .
file: ./enterprise/backend/Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository }}/enterprise-backend:${{ env.VERSION }}
${{ fromJSON(inputs.isStableRelease) && 'ghcr.io/${{ github.repository }}/enterprise-backend:latest' || null }}
platforms: linux/amd64,linux/arm64,linux/arm64/v8

0 comments on commit 824d58c

Please sign in to comment.