Skip to content

build(deps): bump github.com/rs/zerolog from 1.30.0 to 1.31.0 (#11) #49

build(deps): bump github.com/rs/zerolog from 1.30.0 to 1.31.0 (#11)

build(deps): bump github.com/rs/zerolog from 1.30.0 to 1.31.0 (#11) #49

Workflow file for this run

name: Latest build
on:
push:
branches:
- 'master'
tags-ignore:
- '**'
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v4
with:
go-version: 1.19
- uses: golangci/golangci-lint-action@v3
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and test
run: |
go build .
go test
go clean
- uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --clean --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Docker push
run: docker push ghcr.io/${GITHUB_REPOSITORY}:latest