Skip to content

Chore(deps): Bump actions/cache from 3 to 4 (#21) #7

Chore(deps): Bump actions/cache from 3 to 4 (#21)

Chore(deps): Bump actions/cache from 3 to 4 (#21) #7

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@v4
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@v4
with:
name: binaries
path: dist/