From f9e4cc6f12d593b0107b9cae57dc231c4bd987e0 Mon Sep 17 00:00:00 2001 From: genofire Date: Thu, 18 Jul 2024 11:12:13 +0200 Subject: [PATCH] fix(ci): build and release binary --- .github/workflows/go.yml | 41 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index c32b55d..75de08b 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -64,3 +64,44 @@ jobs: version: latest skip-cache: true args: --timeout=5m + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: actions/setup-go@v2 + with: + go-version: '1.21' + - name: Build + run: go build -ldflags "-X github.com/FreifunkBremen/yanic/cmd.VERSION=$(git describe --tags)" -v + env: + CGO_ENABLED: 0 + - name: Archive build artifacts + uses: actions/upload-artifact@v2 + with: + name: build + path: yanic + + release: + runs-on: ubuntu-latest + if: startsWith(github.ref, 'refs/tags/v') + needs: + - lint + - test + - build + steps: + - name: Download build artifacts + uses: actions/download-artifact@v2 + with: + name: build + path: build/ + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: build/yanic + asset_name: yanic.bin + tag: ${{ github.ref }} + overwrite: true