Skip to content

fix(deps): update module github.com/sirupsen/logrus to v1.9.4 #131

fix(deps): update module github.com/sirupsen/logrus to v1.9.4

fix(deps): update module github.com/sirupsen/logrus to v1.9.4 #131

Workflow file for this run

name: Docker Image
on:
push:
branches: [ main ]
tags:
- '*'
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build Docker image
run: make docker-build
- name: Log in to Docker Hub
if: startsWith(github.ref, 'refs/tags/')
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Push Docker image
if: startsWith(github.ref, 'refs/tags/')
run: make docker-push