Skip to content

Commit

Permalink
Revert "Add docker multiplatform image build to github actions"
Browse files Browse the repository at this point in the history
  • Loading branch information
drizzentic authored May 15, 2024
1 parent f86c739 commit 67e0055
Showing 1 changed file with 7 additions and 18 deletions.
25 changes: 7 additions & 18 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,35 +11,24 @@ jobs:
build-and-push:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v4

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

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

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

- uses: actions/checkout@v3
- run: npm run build

- name: Build and push tag
if: ${{ github.ref_name != 'main' }}
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
tags: jembi/mpi-mediator:${{ github.ref_name }}
run: 'docker build -t jembi/mpi-mediator:${{ github.ref_name }} .;
docker push jembi/mpi-mediator:${{ github.ref_name }}'

- name: Build and push latest
if: ${{ github.ref_name == 'main' }}
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64
push: true
tags: jembi/mpi-mediator:latest
run: 'docker build -t jembi/mpi-mediator:latest .;
docker push jembi/mpi-mediator:latest'

0 comments on commit 67e0055

Please sign in to comment.