Skip to content

Commit

Permalink
Docker multi-arch images push for linux/amd64, linux/arm64 (#4018)
Browse files Browse the repository at this point in the history
* build: update github action for multi-arch docker images

* build: update github action for multi-arch docker images

* fix: test for docker multi-arch image push

* fix: test for docker multi-arch image push

* fix: test for docker multi-arch image push

* fix: test for docker multi-arch image push

* fix: test for docker multi-arch image push

* fix: test for docker multi-arch image push

* fix: docker multi-arch images

* fix: docker multi-arch images

---------

Co-authored-by: Salman Nawaz <[email protected]>
Co-authored-by: Feanil Patel <[email protected]>
  • Loading branch information
3 people authored Feb 8, 2024
1 parent c733b1b commit 5a2c60e
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,39 @@ jobs:
return tagName;
result-encoding: string

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Build and push Dev Docker image
uses: docker/build-push-action@v1
uses: docker/build-push-action@v4
with:
push: true
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
target: dev
repository: edxops/discovery-dev
tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }}
tags: |
edxops/discovery-dev:${{ steps.get-tag-name.outputs.result }}
edxops/discovery-dev:${{ github.sha }}
platforms: linux/amd64,linux/arm64

# The current priority is to get the devstack off of Ansible based Images. Once that is done, we can come back to this part to get
# suitable images for smaller prod environments.
# - name: Build and push prod Docker image
# uses: docker/build-push-action@v1
# uses: docker/build-push-action@v4
# with:
# push: true
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_PASSWORD }}
# target: prod
# repository: edxops/discovery-prod
# tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }}
# tags: |
# edxops/discovery-prod:${{ steps.get-tag-name.outputs.result }}
# edxops/discovery-prod:${{ github.sha }}
# platforms: linux/amd64,linux/arm64

0 comments on commit 5a2c60e

Please sign in to comment.