-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.goreleaser.yaml
68 lines (59 loc) · 1.58 KB
/
.goreleaser.yaml
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
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
version: 2
project_name: arcaflow-container-toolkit
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ignore:
- goos: windows
goarch: arm64
main:
./act.go
archives:
- id: my-archive
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
dockers:
- dockerfile: Dockerfile.goreleaser
image_templates:
- ghcr.io/arcalot/arcaflow-container-toolkit:{{ .Tag }}
- ghcr.io/arcalot/arcaflow-container-toolkit:{{ .Major }}
- ghcr.io/arcalot/arcaflow-container-toolkit:latest
extra_files:
- .act.yaml
checksum:
name_template: 'checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
# If set to auto, will mark the release as not ready for production
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
# If set to true, will mark the release as not ready for production.
# Default is false.
prerelease: auto
# What to do with the release notes in case the release already exists.
#
# Valid options are:
# - `keep-existing`: keep the existing notes
# - `append`: append the current release notes to the existing notes
# - `prepend`: prepend the current release notes to the existing notes
# - `replace`: replace existing notes
#
# Default is `keep-existing`.
mode: append