Skip to content

Commit

Permalink
build: increase available platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
micaellobo committed Apr 20, 2024
1 parent 58736f6 commit f2db876
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/docker-hub-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
service: [eureka-service, api-gateway, user-service, auth-service, inventory-service, reviews-service, order-service, notification-service]
service: [ eureka-service, api-gateway, user-service, auth-service, inventory-service, reviews-service, order-service, notification-service ]
platforms: [ linux/arm64, linux/amd64, darwin/amd64, darwin/amd64 ]
steps:
- uses: docker/setup-qemu-action@v2
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
Expand All @@ -29,5 +30,5 @@ jobs:
context: "{{defaultContext}}:${{ matrix.service }}"
push: true
tags: 8160202/${{ matrix.service }}:latest
platforms: 'linux/arm64,linux/amd64'
platforms: ${{ matrix.platforms }}

0 comments on commit f2db876

Please sign in to comment.