Skip to content
Open
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
19 changes: 17 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,9 @@ archives:
# Linux Packages
nfpms:
- id: packages
ids: ['linux']
ids: ['linux']
file_name_template: "{{ .ConventionalFileName }}"
formats:
- apk
- deb
- rpm
- archlinux
Expand All @@ -90,6 +89,22 @@ nfpms:
section: networking
priority: optional

# Alpine Linux package — named with "-alpine" suffix to distinguish from
# Android APK files, which share the same .apk extension.
- id: alpine-package
ids: ['linux']
file_name_template: "{{ .ConventionalFileName | replace \".apk\" \"-alpine.apk\" }}"
formats:
- apk
vendor: xvzc
homepage: https://github.com/xvzc/spoofdpi
maintainer: xvzc
description: A simple and fast anti-censorship tool written in Go
license: Apache-2.0
bindir: /usr/local/bin
section: networking
priority: optional

# Generate Software Bill of Materials
sboms:
- artifacts: archive
Expand Down
Loading