This repository has been archived by the owner on Jul 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.goreleaser.yaml
95 lines (79 loc) · 2.13 KB
/
.goreleaser.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
project_name: botway
env:
- CGO_ENABLED=0
release:
prerelease: auto
draft: true
name_template: "Botway 🤖 {{ .Tag }}"
before:
hooks:
- go mod tidy
builds:
- <<: &build_defaults
binary: bin/botway
main: ./
ldflags:
- -X main.version={{ .Tag }}
- -X main.buildDate={{ .Env.BuildDate }}
id: darwin
goos: [darwin]
goarch: [amd64, arm64, arm]
- <<: *build_defaults
id: linux
goos: [linux]
goarch: [amd64, arm64, arm, "386"]
- <<: *build_defaults
id: windows
goos: [windows]
goarch: [amd64, arm64, arm, "386"]
- <<: *build_defaults
id: freebsd
goos: [freebsd]
goarch: [amd64, arm64, arm, "386"]
archives:
- id: unix
builds: [darwin, linux, freebsd]
<<: &archive_defaults
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Tag }}_{{ .Arch }}"
wrap_in_directory: "true"
format: zip
files:
- LICENSE
- id: windows
builds: [windows]
<<: *archive_defaults
wrap_in_directory: "false"
format: zip
files:
- LICENSE
nfpms:
- license: MIT
maintainer: botway
homepage: https://github.com/abdfnx/botway
bindir: /usr
file_name_template: "{{ .ProjectName }}_{{ .Tag }}_{{ .Arch }}"
description: "🤖 Generate, build, handle and deploy your own AI Bot with your favorite language, for Discord, or Telegram, or even Slack"
formats:
- apk
- deb
- rpm
brews:
- goarm: 6
tap:
owner: abdfnx
name: homebrew-tap
homepage: "https://github.com/abdfnx/botway"
description: "🤖 Generate, build, handle and deploy your own AI Bot with your favorite language, for Discord, or Telegram, or even Slack"
license: MIT
scoop:
url_template: "https://github.com/abdfnx/botway/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: abdfnx
name: botway
homepage: "https://botway.deno.dev"
description: "🤖 Generate, build, handle and deploy your own AI Bot with your favorite language, for Discord, or Telegram, or even Slack"
license: MIT
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Version }}-next"