Skip to content

Commit

Permalink
Chore/release binaries (#18)
Browse files Browse the repository at this point in the history
Signed-off-by: Bengt Wegner <[email protected]>
  • Loading branch information
Petzys authored Sep 19, 2024
1 parent bf6b518 commit 8d760c2
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/release_binaries.yml
Original file line number Diff line number Diff line change
@@ -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/

0 comments on commit 8d760c2

Please sign in to comment.