-
Notifications
You must be signed in to change notification settings - Fork 10
/
.goreleaser.yml
122 lines (102 loc) · 3.19 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
# Adapted from https://github.com/LGUG2Z/komorebi/blob/e240bc770619fa7c1f311b8a376551f2dde8a2d7/.goreleaser.yml
project_name: pacaptr
before:
hooks:
- bash -c 'echo "package main; func main() { panic(0xdeadbeef) }" > dummy.go'
builds:
- id: pacaptr
binary: pacaptr
main: dummy.go
goos:
- linux
- windows
- darwin
goarch:
- arm64
- amd64
hooks:
# Actually override the release binary.
post: bash -c 'mv -f target/gh-artifacts/pacaptr_{{ .Target }}/{{ .Name }} {{ .Path }}'
universal_binaries:
- replace: true
archives:
- format: tar.gz
name_template: >-
{{ .ProjectName }}-
{{- .Os }}-
{{- if eq .Arch "all" }}universal2
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
# Use zip for windows archives
format_overrides:
- goos: windows
format: zip
checksum:
name_template: "checksums.txt"
release:
prerelease: auto
changelog:
sort: asc
filters:
exclude:
- "^test"
- "^chore"
brews:
# https://goreleaser.com/customization/homebrew/
- homepage: https://github.com/rami3l/pacaptr
description: Pacman-like syntax wrapper for many package managers.
license: GPL-3.0-only
custom_block: |
head "https://github.com/rami3l/pacaptr.git"
head do
depends_on "rust" => :build
end
install: |
if build.head? then
system "cargo", "install", *std_cargo_args
else
bin.install "pacaptr"
end
test: |
system "#{bin}/pacaptr --help"
skip_upload: auto
# https://github.com/goreleaser/goreleaser/blob/a0f0d01a8143913cde72ebc1248abef089ae9b27/.goreleaser.yaml#L211
repository:
owner: rami3l
name: homebrew-tap
branch: "{{.ProjectName}}-{{.Version}}"
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
pull_request:
enabled: true
base:
owner: rami3l
name: homebrew-tap
branch: master
chocolateys:
- name: pacaptr
package_source_url: https://github.com/rami3l/pacaptr
owners: Rami3L
# == SOFTWARE SPECIFIC SECTION ==
title: pacaptr (Install)
authors: Rami3L
project_url: https://github.com/rami3l/pacaptr
copyright: 2020 Rami3L
license_url: https://opensource.org/license/gpl-3-0
require_license_acceptance: false
project_source_url: https://github.com/rami3l/pacaptr
bug_tracker_url: https://github.com/rami3l/pacaptr/issues
tags: pacaptr pacman
summary: Pacman-like syntax wrapper for many package managers.
release_notes: "https://github.com/rami3l/pacaptr/releases/tag/v{{ .Version }}"
description: |
# pacaptr
`pacaptr` is a Rust port of [icy/pacapt], a wrapper for many package managers with pacman-style command syntax.
Run `pacaptr -Syu` on the OS of your choice!
# == PUBLISH SPECIFIC SECTION ==
source_repo: "https://push.chocolatey.org/"
api_key: "{{ .Env.CHOCO_API_KEY }}"
# Publishing is handled in `.github\workflows\publish.yml`.
skip_publish: true