File tree Expand file tree Collapse file tree 4 files changed +69
-0
lines changed Expand file tree Collapse file tree 4 files changed +69
-0
lines changed Original file line number Diff line number Diff line change 1+ secret.txt
2+ dist /
Original file line number Diff line number Diff line change 1+ # This is an example .goreleaser.yml file with some sensible defaults.
2+ # Make sure to check the documentation at https://goreleaser.com
3+
4+ # The lines below are called `modelines`. See `:help modeline`
5+ # Feel free to remove those if you don't want/need to use them.
6+ # yaml-language-server: $schema=https://goreleaser.com/static/schema.json
7+ # vim: set ts=2 sw=2 tw=0 fo=cnqoj
8+
9+ version : 2
10+
11+ before :
12+ hooks :
13+ # You may remove this if you don't use go modules.
14+ - go mod tidy
15+ - go mod download
16+ # you may remove this if you don't need go generate
17+ # - go generate ./...
18+
19+ builds :
20+ - env :
21+ - CGO_ENABLED=0
22+ main : ./cmd/mailify/main.go
23+ binary : mailify
24+ goos :
25+ - linux
26+ - windows
27+ - darwin
28+ goarch :
29+ - amd64
30+ - arm64
31+ ignore :
32+ - goos : windows
33+ goarch : arm64
34+ ldflags :
35+ - -s -w -X github.com/flyteorg/flytestdlib/version.Version={{.Version}} -X github.com/flyteorg/flytestdlib/version.Build={{.ShortCommit}} -X github.com/flyteorg/flytestdlib/version.BuildTime={{.Date}}
36+
37+ archives :
38+ - format : tar.gz
39+ # this name template makes the OS and Arch compatible with the results of `uname`.
40+ name_template : >-
41+ {{ .ProjectName }}_
42+ {{- title .Os }}_
43+ {{- if eq .Arch "amd64" }}x86_64
44+ {{- else if eq .Arch "386" }}i386
45+ {{- else }}{{ .Arch }}{{ end }}
46+ {{- if .Arm }}v{{ .Arm }}{{ end }}
47+ # use zip for windows archives
48+ format_overrides :
49+ - goos : windows
50+ format : zip
51+
52+ changelog :
53+ sort : asc
54+ filters :
55+ exclude :
56+ - ' ^docs:'
57+ - ' ^test:'
58+ - ' ^ci:'
59+ - Merge pull request
60+ - Merge branch
61+
62+ checksum :
63+ name_template : ' checksums.txt'
File renamed without changes.
Original file line number Diff line number Diff line change 1+ // Package mailify provides functionalities for handling and processing emails.
2+ // This package includes features for sending, receiving, and managing email
3+ // communications in a secure and efficient manner.
4+ package mailify
You can’t perform that action at this time.
0 commit comments