Skip to content

Update .goreleaser.yml #3

Update .goreleaser.yml

Update .goreleaser.yml #3

Workflow file for this run

name: Release
on:
push:
branches:
- "!*"
tags:
- "v*"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- 1.22.2
name: GoReleaser
steps:
- uses: actions/checkout@master
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- name: Run go mod download
run: go mod download
- name: Run GoReleaser
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: curl -sL https://git.io/goreleaser | bash