fix: print most things to stderr instead of stdout (#515) #20
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: Check GoReleaser config | |
on: | |
push: | |
branches: | |
- "release-please--**" | |
- "renovate/all-non-major-github-actions" | |
- master | |
permissions: | |
contents: read | |
jobs: | |
verify-goreleaser: | |
name: Check GoReleaser config | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
with: | |
go-version-file: "go.mod" | |
- name: Check GoReleaser config | |
uses: goreleaser/goreleaser-action@5742e2a039330cbb23ebf35f046f814d4c6ff811 # v5.1.0 | |
with: | |
version: "~> v2" | |
args: check |