aboutsummaryrefslogblamecommitdiffstats
path: root/.github/workflows/release.yml
blob: 1a65995b58c65df2371b58909b5600380e83ac1c (plain) (tree)
1
2
3
4
5
6
7
8







                            



                                  





                            
                                 
             
                            

                            
                                 



















                                                            
                       
name: Build release binaries

on:
  workflow_dispatch:
  push:
    tags:
      - "v*"

concurrency:
  group: release-${{ github.ref }}
  cancel-in-progress: true

jobs:
  build-release:
    runs-on: "ubuntu-latest"

    steps:
      - name: Set up Go
        uses: actions/setup-go@v5
        with:
          go-version: 1.22.5

      - name: Check out code
        uses: actions/checkout@v4

      - name: Build
        run: make

      - name: Setup minimal git config
        run: |
          git config --global user.email "action@github.com"
          git config --global user.name "GitHub Action"

      - name: Test
        run: make test

      - name: Build binaries
        run: make releases

      - uses: "marvinpinto/action-automatic-releases@latest"
        with:
          repo_token: "${{ secrets.GITHUB_TOKEN }}"
          draft: true
          prerelease: false
          files: dist/*