Some checks failed
Release Tag / release (push) Failing after 46s
- Introduced .goreleaser.yaml for automated release management. - Updated Makefile to utilize GoReleaser for building the jiggablend binary. - Added new workflows for release tagging and pull request checks in Gitea. - Updated dependencies in go.mod and go.sum, including new packages for versioning. - Enhanced .gitignore to exclude build artifacts in the dist directory.
49 lines
869 B
YAML
49 lines
869 B
YAML
version: 2
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy -v
|
|
- sh -c "cd web && npm install && npm run build"
|
|
|
|
builds:
|
|
- id: default
|
|
main: ./cmd/jiggablend
|
|
binary: jiggablend
|
|
ldflags:
|
|
- -X jiggablend/version.Version={{.Version}}
|
|
- -X jiggablend/version.Date={{.Date}}
|
|
env:
|
|
- CGO_ENABLED=1
|
|
goos:
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
|
|
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
|