Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: goreleaser/goreleaser-action@v7
with:
version: latest
args: release --snapshot --skip=publish --clean
args: release --snapshot --skip=publish --clean --config .goreleaser.ci.yml

coverage:
if: true # false to skip job during debug
Expand Down
30 changes: 30 additions & 0 deletions .goreleaser.ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: 2

# Minimal snapshot config for CI - linux/amd64 only for speed
# Full release uses .goreleaser.yml

before:
hooks:
- go mod download

builds:
- env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64

archives:
- name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
wrap_in_directory: true

checksum:
disable: true

changelog:
disable: true
Loading