File tree 3 files changed +45
-11
lines changed
3 files changed +45
-11
lines changed Original file line number Diff line number Diff line change
1
+ version : 1
2
+
1
3
before :
2
4
hooks :
3
5
- go mod tidy
@@ -11,22 +13,42 @@ builds:
11
13
goarch :
12
14
- amd64
13
15
- arm64
16
+ - 386
17
+ ignore :
18
+ - goos : darwin
19
+ goarch : 386
20
+ - goos : linux
21
+ goarch : 386
22
+ - goos : freebsd
23
+ goarch : 386
14
24
env :
15
25
- CGO_ENABLED=0
16
26
flags :
17
27
- -mod=readonly
18
28
19
- release :
20
- prerelease : auto
21
-
22
29
universal_binaries :
23
30
- replace : true
24
31
32
+ archives :
33
+ - format : tar.gz
34
+ # this name template makes the OS and Arch compatible with the results of `uname`.
35
+ name_template : >-
36
+ {{ .ProjectName }}_
37
+ {{- title .Os }}_
38
+ {{- if eq .Arch "amd64" }}x86_64
39
+ {{- else if eq .Arch "386" }}i386
40
+ {{- else }}{{ .Arch }}{{ end }}
41
+ {{- if .Arm }}v{{ .Arm }}{{ end }}
42
+ # use zip for windows archives
43
+ format_overrides :
44
+ - goos : windows
45
+ format : zip
46
+
25
47
brews :
26
48
-
27
49
name : forky
28
50
homepage : https://github.com/thetnaingtn/forky
29
- tap :
51
+ repository :
30
52
owner : thetnaingtn
31
53
name : homebrew-tap
32
54
commit_author :
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " forkyy" ,
3
- "version" : " 0.6.4 " ,
3
+ "version" : " 0.6.5 " ,
4
4
"bin" : " lib/index.js" ,
5
5
"description" : " Synchronize your forks with ease" ,
6
6
"repository" : {
25
25
"typescript" : " ^4.9.4"
26
26
},
27
27
"optionalDependencies" : {
28
- "forky-darwin-arm64" : " 0.6.4 " ,
29
- "forky-darwin-amd64" : " 0.6.4 " ,
30
- "forky-linux-arm64" : " 0.6.4 " ,
31
- "forky-linux-amd64" : " 0.6.4 " ,
32
- "forky-windows-arm64" : " 0.6.4 " ,
33
- "forky-windows-amd64" : " 0.6.4 "
28
+ "forky-darwin-arm64" : " 0.6.5 " ,
29
+ "forky-darwin-amd64" : " 0.6.5 " ,
30
+ "forky-linux-arm64" : " 0.6.5 " ,
31
+ "forky-linux-amd64" : " 0.6.5 " ,
32
+ "forky-windows-arm64" : " 0.6.5 " ,
33
+ "forky-windows-amd64" : " 0.6.5 "
34
34
}
35
35
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "target" : " es2016" ,
4
+ "module" : " commonjs" ,
5
+ "esModuleInterop" : true ,
6
+ "baseUrl" : " ./" ,
7
+ "outDir" : " lib" ,
8
+ "forceConsistentCasingInFileNames" : true ,
9
+ "strict" : true ,
10
+ "skipLibCheck" : true
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments