Skip to content

Merge pull request #57 from gini/dependabot/go_modules/golang.org/x/n… #52

Merge pull request #57 from gini/dependabot/go_modules/golang.org/x/n…

Merge pull request #57 from gini/dependabot/go_modules/golang.org/x/n… #52

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.2
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: 'latest'
# --snapshot's goal is to ignore the existing tagging.
# We are just veryfying this builds, we don't intend to release in this step.
# validate refers to git tags - we don't need to check semver at this stage yet.
args: build --clean --snapshot --skip validate
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}