Skip to content

merge with upstream #254

merge with upstream

merge with upstream #254

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
goreleaser:
runs-on: ubuntu-latest
environment: release
steps:
- name: Set up Go
uses: actions/setup-go@be3c94b385c4f180051c996d336f57a34c397495 # v3.6.1
with:
go-version: '1.25'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
fetch-depth: 0
- name: GoReleaser - Release
uses: goreleaser/goreleaser-action@5fdedb94abba051217030cc86d4523cf3f02243d # v4.6.0
with:
version: latest
args: build --snapshot --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}