-
Notifications
You must be signed in to change notification settings - Fork 7
/
.goreleaser.yml
39 lines (37 loc) · 996 Bytes
/
.goreleaser.yml
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
build:
binary: bin/edgr
main: ./cmd
goos:
- windows
- darwin
- linux
goarch:
- amd64
brew:
github:
owner: piquette
name: homebrew-edgr
homepage: "https://github.com/piquette/edgr"
description: "edgr is a tool for downloading and persisting SEC EDGAR filings and data"
plist: |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>#{var}</string>
<key>StandardErrorPath</key>
<string>#{var}/log/edgr.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/edgr.log</string>
</dict>
</plist>