Skip to content

1. Added release

1. Added release #2

Workflow file for this run

name: release
on:
push:
tags:
- v*
env:
GO_VERSION: "1.21"
jobs:
GoReleaser:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v3
if: ${{ !env.ACT }}
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.golang }}-
- name: GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
workdir: cmd
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}