Skip to content

Fixed KafkaProducer to throw exception instead of infinitely trying t… #819

Fixed KafkaProducer to throw exception instead of infinitely trying t…

Fixed KafkaProducer to throw exception instead of infinitely trying t… #819

Workflow file for this run

name: Publish Docker
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v4
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
id: docker_build
uses: docker/build-push-action@v4
with:
push: ${{ github.ref == 'refs/heads/main'}}
tags: oskardudycz/eventsourcing.netcore:latest
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}