From 853db9dd79a940f4e473723ef5d725a9da628815 Mon Sep 17 00:00:00 2001 From: Ryan Gerstenkorn Date: Tue, 25 Jan 2022 11:39:39 -0800 Subject: [PATCH] Create go-release.yml --- .github/workflows/go-release.yml | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/go-release.yml diff --git a/.github/workflows/go-release.yml b/.github/workflows/go-release.yml new file mode 100644 index 0000000..73a495c --- /dev/null +++ b/.github/workflows/go-release.yml @@ -0,0 +1,33 @@ +name: Go Release + +on: + push: + tags: + - 'v*' + +permissions: + contents: write + +jobs: + goreleaser: + 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.17 + - + name: Run GoReleaser + uses: goreleaser/goreleaser-action@v2 + with: + distribution: goreleaser + version: latest + args: release --rm-dist + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}