-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.goreleaser.yml
43 lines (37 loc) · 1.01 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
version: 2
project_name: gitlab-tart-executor
before:
hooks:
- go mod download
builds:
- main: cmd/gitlab-tart-executor/main.go
ldflags: >
-X github.com/cirruslabs/gitlab-tart-executor/internal/version.Version={{.Version}}
-X github.com/cirruslabs/gitlab-tart-executor/internal/version.Commit={{.ShortCommit}}
env:
- CGO_ENABLED=0
goos:
- darwin
goarch:
- arm64
archives:
- id: binary
format: binary
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
- id: regular
name_template: "{{ .ProjectName }}-{{ .Os }}-{{ .Arch }}"
release:
prerelease: auto
brews:
- name: gitlab-tart-executor
ids:
- regular
repository:
owner: cirruslabs
name: homebrew-cli
dependencies:
- "cirruslabs/cli/tart"
caveats: See the Github repository for more information
homepage: https://github.com/cirruslabs/gitlab-tart-executor
description: GitLab Runner Executor to run jobs inside isolated Tart VMs
skip_upload: auto