Skip to content

Commit

Permalink
Revert "Docker multi-arch images push for linux/amd64, linux/arm64 (#…
Browse files Browse the repository at this point in the history
…4018)"

This reverts commit 5a2c60e.
  • Loading branch information
DawoudSheraz committed Feb 19, 2024
1 parent 620f273 commit 3647996
Showing 1 changed file with 7 additions and 22 deletions.
29 changes: 7 additions & 22 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,39 +27,24 @@ 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@v4
uses: docker/build-push-action@v1
with:
push: true
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
target: dev
repository: edxops/discovery-dev
tags: |
edxops/discovery-dev:${{ steps.get-tag-name.outputs.result }}
edxops/discovery-dev:${{ github.sha }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.get-tag-name.outputs.result }},${{ github.sha }}

# 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@v4
# uses: docker/build-push-action@v1
# 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 3647996

Please sign in to comment.