Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Bump github.com/rs/zerolog from 1.29.1 to 1.31.0 (#77) #13

Bump github.com/rs/zerolog from 1.29.1 to 1.31.0 (#77)

Bump github.com/rs/zerolog from 1.29.1 to 1.31.0 (#77) #13

Workflow file for this run

name: DockerHub
on:
push:
tags:
- '*' # Push events to every tag not containing /
jobs:
push_to_registry:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ secrets.DOCKER_HUB_USERNAME }}/gitlab-review-bot
- name: Build and push to Docker Hub
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}