Skip to content

Commit

Permalink
feat: multi arch docker (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt authored Mar 31, 2024
1 parent b44261c commit 259e4b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-push-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
tags: |
lunary/backend:latest
lunary/backend:rev-${{ steps.date.outputs.date }}-${{ steps.commit.outputs.hash }}
platforms: linux/amd64
platforms: linux/amd64, linux/arm64

- name: Build and push frontend
uses: docker/build-push-action@v5
Expand All @@ -52,7 +52,7 @@ jobs:
tags: |
lunary/frontend:latest
lunary/frontend:rev-${{ steps.date.outputs.date }}-${{ steps.commit.outputs.hash }}
platforms: linux/amd64
platforms: linux/amd64, linux/arm64

- name: Build and push radar
uses: docker/build-push-action@v5
Expand All @@ -63,7 +63,7 @@ jobs:
tags: |
lunary/radar:latest
lunary/radar:rev-${{ steps.date.outputs.date }}-${{ steps.commit.outputs.hash }}
platforms: linux/amd64
platforms: linux/amd64, linux/arm64

- name: Build and push ml
uses: docker/build-push-action@v5
Expand All @@ -74,7 +74,7 @@ jobs:
tags: |
lunary/ml:latest
lunary/ml:rev-${{ steps.date.outputs.date }}-${{ steps.commit.outputs.hash }}
platforms: linux/amd64
platforms: linux/amd64, linux/arm64

deploy:
needs: build-and-push
Expand Down

0 comments on commit 259e4b9

Please sign in to comment.