Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.

Update README (#172) #4

Update README (#172)

Update README (#172) #4

Workflow file for this run

name: release
on:
push:
tags:
- "*"
permissions:
contents: write
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: release golines
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}