-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
42 lines (36 loc) · 950 Bytes
/
.goreleaser.yaml
File metadata and controls
42 lines (36 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 1. Fix the version error
version: 2
project_name: Quazaar
builds:
- id: quazaar
# 2. Fix the main function error
# Point this to the folder containing your main.go
# If it is in root, keep it as "."
# If it is in cmd, change to "./cmd/quazaar"
main: ./cmd/server
binary: Quazaar
env:
- CGO_ENABLED=0
goos:
- linux
- windows
goarch:
- amd64
- arm64
nfpms:
- # The package name
id: "./cmd/quazaar"
package_name: quazaar
# Your formats (deb for Debian/Ubuntu, rpm for Fedora/RedHat)
formats:
- deb
- rpm
# Metadata
vendor: "CodersHubInc"
homepage: "https://github.com/codershubinc/quazaar"
maintainer: "Swapnil Ingle <ingleswapnil2004@gmail.com>"
description: "A cross-platform LAN media control system using WebSockets"
license: "MIT"
# Dependencies (optional, but good for completeness)
dependencies:
- git