12345678910111213141516171819202122232425262728293031323334353637383940 |
- # This is an example goreleaser.yaml file with some sane defaults.
- # Make sure to check the documentation at http://goreleaser.com
- archives:
- - replacements:
- darwin: Darwin
- linux: Linux
- windows: Windows
- 386: i386
- amd64: x86_64
- before:
- hooks:
- # You may remove this if you don't use go modules.
- - go mod download
- # you may remove this if you don't need go generate
- - go generate ./...
- builds:
- - binary: released
- env:
- - CGO_ENABLED=0
- id: binaire
- goos:
- - darwin
- goarch:
- - amd64
- changelog:
- sort: asc
- filters:
- exclude:
- - '^docs:'
- - '^test:'
- checksum:
- name_template: 'checksums.txt'
- env_files:
- gitea_token: ./gitea_token.txt
- gitea_urls:
- api: https://code.osinet.fr/api/v1/
- skip_tls_verify: false
- project_name: released
- snapshot:
- name_template: "{{ .Tag }}-next"
|