diff --git a/.github/workflows/release_binaries.yml b/.github/workflows/release_binaries.yml new file mode 100644 index 0000000..494e87b --- /dev/null +++ b/.github/workflows/release_binaries.yml @@ -0,0 +1,45 @@ +name: Build Binaries + +on: + push: + branches: [ "main" ] + +jobs: + build: + name: Build Release Assets + runs-on: ubuntu-latest + + strategy: + matrix: + # Add more platforms as needed + goos: [linux, darwin, windows] + goarch: [amd64, arm64] + + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '1.23' + + - name: Cache Go modules + uses: actions/cache@v3 + with: + path: | + ~/go/pkg/mod + ~/go/bin + key: ${{ runner.os }}-go-${{ matrix.goos }}-${{ matrix.goarch }}-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go-${{ matrix.goos }}-${{ matrix.goarch }} + + - name: Build binary + run: | + mkdir -p dist + GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o dist/${{ github.event.repository.name }}_${{ matrix.goos }}_${{ matrix.goarch }} . + + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: binaries + path: dist/ \ No newline at end of file