Skip to content

Commit

Permalink
Set up goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
hmarr committed Aug 8, 2020
1 parent 4da39c4 commit bf3c9db
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: release

on:
push:
tags:
- 'v*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_TAP_RELEASE_TOKEN: ${{ secrets.HOMEBREW_TAP_RELEASE_TOKEN }}
41 changes: 41 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
before:
hooks:
- go mod download

builds:
- main: ./cmd/codeowners
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64

brews:
- homepage: "https://github.com/hmarr/codeowners"
description: "Determine who owns what according CODEOWNERS files"

tap:
owner: hmarr
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_RELEASE_TOKEN }}"

commit_author:
name: release-bot
email: [email protected]

folder: Formula

checksum:
name_template: 'checksums.txt'

snapshot:
name_template: "{{ .Tag }}-next"

changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'

0 comments on commit bf3c9db

Please sign in to comment.