Skip to content

Commit

Permalink
adds initial goreleaser (#151)
Browse files Browse the repository at this point in the history
* remove hardcoded aws profile, change default name

* fix for dns test logic and add vault skips

* adds gorelaeser action
  • Loading branch information
jarededwards authored Jul 26, 2022
1 parent 9c35f58 commit ff1ee41
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: goreleaser

on:
push:
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v3
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
6 changes: 6 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,9 @@ changelog:
exclude:
- '^docs:'
- '^test:'
brews:
- name: kubefirst
homepage: https://github.com/kubefirst/kubefirst
tap:
owner: kubefirst
name: homebrew-tools

0 comments on commit ff1ee41

Please sign in to comment.