Merge pull request #55 from gini/dependabot/go_modules/golang.org/x/n… #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |