Skip to content

Update dependencies #32

Update dependencies

Update dependencies #32

Workflow file for this run

name: build
on:
push:
permissions:
contents: read
jobs:
goreleaser:
# using Ubuntu 22.04 should help maximize the
# glibc compatibility across the board
# without using a too-old-to-support version
# of Ubuntu.
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: "1.24"
cache: false
- name: build golines
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: build --clean --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}