Skip to content

Bump github.com/stretchr/testify from 1.7.2 to 1.8.4 (#2) #3

Bump github.com/stretchr/testify from 1.7.2 to 1.8.4 (#2)

Bump github.com/stretchr/testify from 1.7.2 to 1.8.4 (#2) #3

Workflow file for this run

name: Releases
on:
push:
tags:
- v*.*.*
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Release via goreleaser
uses: goreleaser/goreleaser-action@v5
if: startsWith(github.ref, 'refs/tags/')
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}