Skip to content

build(ci): Add goreleaser to ship binaries #16

build(ci): Add goreleaser to ship binaries

build(ci): Add goreleaser to ship binaries #16

Workflow file for this run

name: goreleaser
on:
push:
# run only against tags
#tags:
# - '*'
branches:
- '*'
permissions:
contents: write
# packages: write
# issues: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Fetch all tags
run: git fetch --force --tags
-
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
-
name: install cross-platform build tools
run: sudo apt-get install -y gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf gcc-mingw-w64 gcc-powerpc64le-linux-gnu gcc-s390x-linux-gnu build-essential
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --snapshot --skip=publish --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}