Skip to content

Commit

Permalink
Merge pull request #14 from VIB-PSB/bedroesb-patch-2
Browse files Browse the repository at this point in the history
Buildx ARM64 container support
  • Loading branch information
bedroesb authored Jun 27, 2024
2 parents 8b9876e + 25da7c5 commit 4d6f3f1
Showing 1 changed file with 32 additions and 7 deletions.
39 changes: 32 additions & 7 deletions .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,44 @@
name: Publish Docker image
name: Push DockerHub CI

on:
release:
types: [published]
workflow_dispatch:
workflow_dispatch:

jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo

- name: Checkout
uses: actions/checkout@v2
- name: Push to Docker Hub
uses: docker/build-push-action@v1

- name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
images: |
vibpsb/i-adhore
tags: |
type=ref,event=tag
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: vibpsb/i-adhore
tags: latest

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

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

- name: Build and push to Docker Hub
uses: docker/build-push-action@v2
with:
push: true
platforms: linux/arm64,linux/amd64
context: .
tags: ${{ steps.meta.outputs.tags }}

0 comments on commit 4d6f3f1

Please sign in to comment.