mirror of
https://github.com/patriceckhart/zot.git
synced 2026-06-26 13:26:33 +02:00
The homebrew-tap repo was never created and maintaining a separate tap for a small tool adds release-pipeline surface for no real benefit (install.sh and go install cover macos already). Removed from: - README.md install section - .goreleaser.yaml brews block + the release header that advertised the brew one-liner - .github/workflows/release.yml env export for HOMEBREW_TAP_TOKEN (no longer consumed) No other surfaces referenced it. Installers (install.sh / install.ps1) never mentioned brew.
94 lines
2.2 KiB
YAML
94 lines
2.2 KiB
YAML
# GoReleaser config — builds cross-platform binaries and GitHub Release
|
|
# artifacts for zot.
|
|
#
|
|
# Triggered by pushing a tag like `v0.1.0`. The release workflow runs
|
|
# `goreleaser release --clean`, which compiles every target, packs
|
|
# them into `.tar.gz` (Unix) / `.zip` (Windows) archives, generates a
|
|
# checksum file, and uploads everything to a GitHub Release.
|
|
|
|
version: 2
|
|
|
|
project_name: zot
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
builds:
|
|
- id: zot
|
|
main: ./cmd/zot
|
|
binary: zot
|
|
env:
|
|
- CGO_ENABLED=0
|
|
goos: [linux, darwin, windows]
|
|
goarch: [amd64, arm64]
|
|
# Windows/arm64 is shipped by Go but rarely used — skip to keep the
|
|
# release artifact list tidy.
|
|
ignore:
|
|
- goos: windows
|
|
goarch: arm64
|
|
flags:
|
|
- -trimpath
|
|
ldflags:
|
|
- -s -w
|
|
- -X main.version={{.Version}}
|
|
- -X main.commit={{.Commit}}
|
|
- -X main.date={{.Date}}
|
|
|
|
archives:
|
|
- id: zot
|
|
# Human-friendly name: zot_0.1.0_darwin_arm64.tar.gz
|
|
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
|
|
files:
|
|
- LICENSE
|
|
- README.md
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
|
|
checksum:
|
|
name_template: "checksums.txt"
|
|
algorithm: sha256
|
|
|
|
snapshot:
|
|
# Used by `goreleaser release --snapshot`; lets contributors build
|
|
# a local release without pushing a tag.
|
|
version_template: "{{ incpatch .Version }}-next"
|
|
|
|
changelog:
|
|
sort: asc
|
|
use: github
|
|
filters:
|
|
exclude:
|
|
- "^docs:"
|
|
- "^chore:"
|
|
- "^ci:"
|
|
- "^test:"
|
|
groups:
|
|
- title: features
|
|
regexp: "^.*feat[(\\w)]*:+.*$"
|
|
order: 0
|
|
- title: fixes
|
|
regexp: "^.*fix[(\\w)]*:+.*$"
|
|
order: 1
|
|
- title: other
|
|
order: 999
|
|
|
|
release:
|
|
github:
|
|
owner: patriceckhart
|
|
name: zot
|
|
draft: false
|
|
prerelease: auto
|
|
# Auto-generated release notes include the changelog groups above plus
|
|
# an install snippet so the release page itself is a landing page.
|
|
header: |
|
|
## zot {{ .Tag }}
|
|
|
|
one-liner install:
|
|
|
|
```bash
|
|
curl -fsSL https://raw.githubusercontent.com/patriceckhart/zot/main/install.sh | bash
|
|
```
|
|
|
|
or download a binary below, `chmod +x`, and drop it on your `$PATH`.
|