diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..671dd13 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,38 @@ +name: Go Build & Release CI + +on: + workflow_dispatch: + push: + tags: + - "v*" + pull_request: + branch: dev + +permissions: + contents: write + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - run: git fetch --force --tags + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: "1.21.x" + cache: true + + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v2 + if: success() && startsWith(github.ref, 'refs/tags/') + with: + distribution: goreleaser + version: latest + args: release --clean + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}