Skip to content

Update CHANGELOG.md for v1.16.0 (#5148) #1

Update CHANGELOG.md for v1.16.0 (#5148)

Update CHANGELOG.md for v1.16.0 (#5148) #1

Workflow file for this run

name: release assets
on:
push:
tags:
- v*
jobs:
publish:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make fmt
- run: make tidy
- run: make vet
- run: make test-generate
- run: make test-unit
- run: make test-system
- run: make test-heavy
- uses: goreleaser/goreleaser-action@v5
with:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}