forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
51 lines (51 loc) · 1.27 KB
/
Copy path.goreleaser.yaml
File metadata and controls
51 lines (51 loc) · 1.27 KB
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
version: 2
project_name: zoom-pp-cli
changelog:
disable: true
builds:
- id: zoom-pp-cli
main: ./cmd/zoom-pp-cli
binary: zoom-pp-cli
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X github.com/mvanhorn/printing-press-library/library/productivity/zoom/internal/cli.version={{ .Version }}
targets:
- darwin_amd64
- darwin_arm64
- linux_amd64
- linux_arm64
- windows_amd64
- windows_arm64
- id: zoom-pp-mcp
main: ./cmd/zoom-pp-mcp
binary: zoom-pp-mcp
env:
- CGO_ENABLED=0
ldflags:
- -s -w
targets:
- darwin_amd64
- darwin_arm64
- linux_amd64
- linux_arm64
- windows_amd64
- windows_arm64
archives:
- formats: [tar.gz]
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
formats: [zip]
checksum:
name_template: checksums.txt
brews:
- name: zoom-pp-cli
repository:
owner: jacken
name: homebrew-tap
homepage: "https://github.com/mvanhorn/printing-press-library"
description: "The first Zoom CLI that joins your local desktop app, your on-disk recordings, and your cloud account into one..."
install: |
bin.install "zoom-pp-cli"
bin.install "zoom-pp-mcp"