All checks were successful
PR Check / check-and-test (pull_request) Successful in 18s
- Removed copyright footer from .goreleaser.yaml. - Increased HTTP client connection settings in steamcache.go for improved performance: - MaxIdleConns from 100 to 200 - MaxIdleConnsPerHost from 10 to 50 - IdleConnTimeout from 90s to 120s - TLSHandshakeTimeout from 10s to 15s - ResponseHeaderTimeout from 10s to 30s - ExpectContinueTimeout from 1s to 5s - Added DisableCompression and ForceAttemptHTTP2 options. - Removed debug logging for manifest files in ServeHTTP method.
54 lines
951 B
YAML
54 lines
951 B
YAML
version: 2
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy -v
|
|
|
|
builds:
|
|
- id: default
|
|
binary: steamcache2
|
|
ldflags:
|
|
- -s
|
|
- -w
|
|
- -extldflags "-static"
|
|
- -X s1d3sw1ped/SteamCache2/version.Version={{.Version}}
|
|
- -X s1d3sw1ped/SteamCache2/version.Date={{.Date}}
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- windows
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
ignore:
|
|
- goos: windows
|
|
goarch: arm64
|
|
|
|
checksum:
|
|
name_template: "checksums.txt"
|
|
|
|
archives:
|
|
- id: default
|
|
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
|
|
formats: tar.gz
|
|
format_overrides:
|
|
- goos: windows
|
|
formats: zip
|
|
files:
|
|
- README.md
|
|
- LICENSE
|
|
|
|
changelog:
|
|
sort: asc
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^test:"
|
|
|
|
release:
|
|
name_template: "{{ .ProjectName }}-{{ .Version }}"
|
|
|
|
gitea_urls:
|
|
api: https://git.s1d3sw1ped.com/api/v1
|
|
download: https://git.s1d3sw1ped.com |