Skip to content

⬆️ bump rabbitmq-stream-go-client to 1.3.0 #24

⬆️ bump rabbitmq-stream-go-client to 1.3.0

⬆️ bump rabbitmq-stream-go-client to 1.3.0 #24

Workflow file for this run

name: 'Build'
on:
push:
branches: [ bleeding-edge, mainline ]
paths:
- '.github/workflows/*.yml'
- '**.go'
- 'go.mod'
- 'go.sum'
- 'Dockerfile'
- 'docker-compose.yml'
create:
tags:
- v*
workflow_dispatch:
jobs:
push:
name: Push to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
images: |
alphanecron/igloo
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=sha
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
- name: Setup Docker BuildX
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push to DockerHub
uses: docker/build-push-action@v4
with:
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}