-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathgoreleaser.yml
40 lines (38 loc) · 1.1 KB
/
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
40
build:
binary: qtrn
ldflags:
- -s -X github.com/piquette/qtrn/version.Version={{.Version}}
goos:
- windows
- darwin
- linux
goarch:
- amd64
brews:
- github:
owner: piquette
name: homebrew-qtrn
homepage: "https://github.com/piquette/qtrn"
description: "qtrn is a tool for printing financial markets data to the console and writing data to files."
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/qtrn.log</string>
<key>StandardOutPath</key>
<string>#{var}/log/qtrn.log</string>
</dict>
</plist>