Skip to content

Bump github.com/jhump/protoreflect from 1.15.4 to 1.15.6 (#344) #24

Bump github.com/jhump/protoreflect from 1.15.4 to 1.15.6 (#344)

Bump github.com/jhump/protoreflect from 1.15.4 to 1.15.6 (#344) #24

name: Publish Docker image
on:
push:
tags:
- '*'
jobs:
publish-docker:
runs-on: ubuntu-latest
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
expediagroup/mittens
# Generate Docker tags based on the following events/attributes
tags: |
type=ref,event=tag
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}