Skip to content

Commit da9a5c5

Browse files
Initial public release
Signed-off-by: Marwan Sulaiman <[email protected]>
0 parents  commit da9a5c5

File tree

14 files changed

+948
-0
lines changed

14 files changed

+948
-0
lines changed

tsrelay/dist/artifacts.json

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
[
2+
{
3+
"name": "vscode-tailscale",
4+
"path": "dist/vscode-tailscale_darwin_arm64/vscode-tailscale",
5+
"goos": "darwin",
6+
"goarch": "arm64",
7+
"internal_type": 4,
8+
"type": "Binary",
9+
"extra": { "Binary": "vscode-tailscale", "Ext": "", "ID": "vscode-tailscale" }
10+
},
11+
{
12+
"name": "vscode-tailscale",
13+
"path": "dist/vscode-tailscale_darwin_amd64_v1/vscode-tailscale",
14+
"goos": "darwin",
15+
"goarch": "amd64",
16+
"goamd64": "v1",
17+
"internal_type": 4,
18+
"type": "Binary",
19+
"extra": { "Binary": "vscode-tailscale", "Ext": "", "ID": "vscode-tailscale" }
20+
},
21+
{
22+
"name": "vscode-tailscale",
23+
"path": "dist/vscode-tailscale_linux_amd64_v1/vscode-tailscale",
24+
"goos": "linux",
25+
"goarch": "amd64",
26+
"goamd64": "v1",
27+
"internal_type": 4,
28+
"type": "Binary",
29+
"extra": { "Binary": "vscode-tailscale", "Ext": "", "ID": "vscode-tailscale" }
30+
},
31+
{
32+
"name": "vscode-tailscale",
33+
"path": "dist/vscode-tailscale_linux_arm64/vscode-tailscale",
34+
"goos": "linux",
35+
"goarch": "arm64",
36+
"internal_type": 4,
37+
"type": "Binary",
38+
"extra": { "Binary": "vscode-tailscale", "Ext": "", "ID": "vscode-tailscale" }
39+
},
40+
{
41+
"name": "vscode-tailscale.exe",
42+
"path": "dist/vscode-tailscale_windows_arm64/vscode-tailscale.exe",
43+
"goos": "windows",
44+
"goarch": "arm64",
45+
"internal_type": 4,
46+
"type": "Binary",
47+
"extra": { "Binary": "vscode-tailscale", "Ext": ".exe", "ID": "vscode-tailscale" }
48+
},
49+
{
50+
"name": "vscode-tailscale.exe",
51+
"path": "dist/vscode-tailscale_windows_amd64_v1/vscode-tailscale.exe",
52+
"goos": "windows",
53+
"goarch": "amd64",
54+
"goamd64": "v1",
55+
"internal_type": 4,
56+
"type": "Binary",
57+
"extra": { "Binary": "vscode-tailscale", "Ext": ".exe", "ID": "vscode-tailscale" }
58+
},
59+
{
60+
"name": "vscode-tailscale",
61+
"path": "dist/vscode-tailscale_linux_386/vscode-tailscale",
62+
"goos": "linux",
63+
"goarch": "386",
64+
"internal_type": 4,
65+
"type": "Binary",
66+
"extra": { "Binary": "vscode-tailscale", "Ext": "", "ID": "vscode-tailscale" }
67+
},
68+
{
69+
"name": "vscode-tailscale.exe",
70+
"path": "dist/vscode-tailscale_windows_386/vscode-tailscale.exe",
71+
"goos": "windows",
72+
"goarch": "386",
73+
"internal_type": 4,
74+
"type": "Binary",
75+
"extra": { "Binary": "vscode-tailscale", "Ext": ".exe", "ID": "vscode-tailscale" }
76+
}
77+
]

tsrelay/dist/config.yaml

Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
project_name: vscode-tailscale
2+
release:
3+
github:
4+
owner: tailscale-dev
5+
name: vscode-tailscale
6+
name_template: '{{.Tag}}'
7+
builds:
8+
- id: vscode-tailscale
9+
goos:
10+
- linux
11+
- darwin
12+
- windows
13+
goarch:
14+
- amd64
15+
- arm64
16+
- '386'
17+
goarm:
18+
- '6'
19+
gomips:
20+
- hardfloat
21+
goamd64:
22+
- v1
23+
targets:
24+
- linux_amd64_v1
25+
- linux_arm64
26+
- linux_386
27+
- darwin_amd64_v1
28+
- darwin_arm64
29+
- windows_amd64_v1
30+
- windows_arm64
31+
- windows_386
32+
dir: .
33+
main: .
34+
binary: vscode-tailscale
35+
builder: go
36+
gobinary: go
37+
command: build
38+
ldflags:
39+
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}} -X main.builtBy=goreleaser
40+
archives:
41+
- id: default
42+
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 "v1") }}{{ .Amd64 }}{{ end }}'
43+
format: tar.gz
44+
files:
45+
- src: license*
46+
- src: LICENSE*
47+
- src: readme*
48+
- src: README*
49+
- src: changelog*
50+
- src: CHANGELOG*
51+
snapshot:
52+
name_template: '{{ .Version }}-SNAPSHOT-{{ .ShortCommit }}'
53+
checksum:
54+
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'
55+
algorithm: sha256
56+
dist: dist
57+
env_files:
58+
github_token: ~/.config/goreleaser/github_token
59+
gitlab_token: ~/.config/goreleaser/gitlab_token
60+
gitea_token: ~/.config/goreleaser/gitea_token
61+
source:
62+
name_template: '{{ .ProjectName }}-{{ .Version }}'
63+
format: tar.gz
64+
gomod:
65+
gobinary: go
66+
announce:
67+
twitter:
68+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
69+
mastodon:
70+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
71+
server: ''
72+
reddit:
73+
title_template: '{{ .ProjectName }} {{ .Tag }} is out!'
74+
url_template: '{{ .ReleaseURL }}'
75+
slack:
76+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
77+
username: GoReleaser
78+
discord:
79+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
80+
author: GoReleaser
81+
color: '3888754'
82+
icon_url: https://goreleaser.com/static/avatar.png
83+
teams:
84+
title_template: '{{ .ProjectName }} {{ .Tag }} is out!'
85+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
86+
color: '#2D313E'
87+
icon_url: https://goreleaser.com/static/avatar.png
88+
smtp:
89+
subject_template: '{{ .ProjectName }} {{ .Tag }} is out!'
90+
body_template: 'You can view details from: {{ .ReleaseURL }}'
91+
mattermost:
92+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
93+
title_template: '{{ .ProjectName }} {{ .Tag }} is out!'
94+
username: GoReleaser
95+
linkedin:
96+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
97+
telegram:
98+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'
99+
webhook:
100+
message_template: '{ "message": "{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}"}'
101+
content_type: application/json; charset=utf-8
102+
opencollective:
103+
title_template: '{{ .Tag }}'
104+
message_template: '{{ .ProjectName }} {{ .Tag }} is out!<br/>Check it out at <a href="{{ .ReleaseURL }}">{{ .ReleaseURL }}</a>'
105+
git:
106+
tag_sort: -version:refname
107+
github_urls:
108+
download: https://github.com
109+
gitlab_urls:
110+
download: https://gitlab.com

tsrelay/dist/metadata.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"project_name": "vscode-tailscale",
3+
"tag": "v0.4.0",
4+
"previous_tag": "latest",
5+
"version": "0.4.0-SNAPSHOT-3e0e2c5",
6+
"commit": "3e0e2c5f543ee96844d0e2aec562825cc3753a80",
7+
"date": "2023-05-26T09:22:16.184978-07:00",
8+
"runtime": { "goos": "darwin", "goarch": "arm64" }
9+
}
6.12 MB
Binary file not shown.
5.89 MB
Binary file not shown.
5.49 MB
Binary file not shown.
5.72 MB
Binary file not shown.
5.44 MB
Binary file not shown.
5.62 MB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)