Skip to content

Make all metrics opt-in via configuration (#10) #4

Make all metrics opt-in via configuration (#10)

Make all metrics opt-in via configuration (#10) #4

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
release:
name: Build and Publish
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
attestations: write
id-token: write
env:
KO_DOCKER_REPO: ghcr.io/rpcpool
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: go.mod
check-latest: false
- name: Set up ko
uses: ko-build/setup-ko@d006021bd0c28d1ce33a07e7943d48b079944c8d # v0.9
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
with:
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}