Publisher configuration examples for each target: - publish-github.yaml - GitHub Releases (foundation) - publish-npm.yaml - npm binary wrapper - publish-homebrew.yaml - Homebrew formula + tap - publish-scoop.yaml - Scoop manifest (Windows) - publish-aur.yaml - AUR PKGBUILD (Arch Linux) - publish-chocolatey.yaml - Chocolatey NuSpec (Windows) - publish-docker.yaml - Multi-arch containers - publish-linuxkit.yaml - Immutable images - publish-all.yaml - All publishers combined Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
609 B
YAML
29 lines
609 B
YAML
# Example: Homebrew Publisher
|
|
# Formula generation and tap management
|
|
|
|
type: homebrew
|
|
|
|
# Your tap repository
|
|
tap: myorg/homebrew-tap
|
|
|
|
# Formula name (defaults to project name)
|
|
formula: mycli
|
|
|
|
# Generate files for official homebrew-core PR
|
|
official:
|
|
enabled: true
|
|
output: dist/homebrew
|
|
|
|
# Environment: Uses gh CLI authentication
|
|
#
|
|
# Usage after publish:
|
|
# brew tap myorg/tap
|
|
# brew install mycli
|
|
#
|
|
# Or directly:
|
|
# brew install myorg/tap/mycli
|
|
#
|
|
# Generated formula includes:
|
|
# - Multi-platform support (macOS Intel/ARM, Linux)
|
|
# - SHA256 checksums from GitHub release
|
|
# - Version from git tag
|