From 6184aba245dce6f9f68e7147f86b943caa508eba Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Mon, 22 Jul 2024 18:24:03 -0400 Subject: [PATCH] chore: Add Go Release workflow for automated releases --- .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..9ff7474 --- /dev/null +++ b/.github/workflows/go-release.yml @@ -0,0 +1,33 @@ +name: Go Release + +on: + push: + tags: + - 'v*' +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: 1.22 + check-latest: true + cache: true + + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v6 + with: + # either 'goreleaser' (default) or 'goreleaser-pro' + distribution: goreleaser + # 'latest', 'nightly', or a semver + version: latest + args: release --clean --skip=validate + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution + # GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} + \ No newline at end of file