Skip to content

feat: add GitHub workflow to build and push to Docker Hub #1

feat: add GitHub workflow to build and push to Docker Hub

feat: add GitHub workflow to build and push to Docker Hub #1

Workflow file for this run

name: Publish Docker image
# Currently, we publish every commit to main into Docker hub.
# In the future, we may to trigger off of actual releases.
on:
pull_request:
# push:
# branches:
# - main
jobs:
push_to_docker_hub:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Get Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
images: name/app
#
# - name: Log in to Docker Hub
# uses: docker/login-action@v2
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push image to Docker Hub
uses: docker/build-push-action@v4
with:
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}