Skip to content

Bump Sentry.AspNetCore from 4.10.2 to 4.11.0 (#276) #229

Bump Sentry.AspNetCore from 4.10.2 to 4.11.0 (#276)

Bump Sentry.AspNetCore from 4.10.2 to 4.11.0 (#276) #229

Workflow file for this run

name: Create and publish Docker image
on:
push:
branches: ["main"]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
push: true
tags: benscobie/loan-repayment-api:latest
context: "{{defaultContext}}:src/LoanRepaymentApi"