2024-12-27 14:44:39 +01:00
|
|
|
name: Build
|
2024-12-27 06:32:50 +01:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-12-27 06:44:21 +01:00
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
2024-12-27 06:32:50 +01:00
|
|
|
|
|
|
|
- name: Set up Go
|
2024-12-27 14:44:39 +01:00
|
|
|
uses: actions/setup-go@v5
|
2024-12-27 06:32:50 +01:00
|
|
|
with:
|
2024-12-27 14:44:39 +01:00
|
|
|
go-version: stable
|
2024-12-27 06:32:50 +01:00
|
|
|
|
|
|
|
- name: Build
|
2024-12-27 14:44:39 +01:00
|
|
|
uses: goreleaser/goreleaser-action@v6
|
|
|
|
with:
|
|
|
|
distribution: goreleaser
|
|
|
|
version: "~> v2"
|
|
|
|
args: build --clean --snapshot
|
2024-12-27 06:44:21 +01:00
|
|
|
|
2024-12-27 14:44:39 +01:00
|
|
|
- name: Upload binares as artifact
|
2024-12-27 06:44:21 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: licensmith
|
2024-12-27 14:44:39 +01:00
|
|
|
path: dist/
|