-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser-windows.yaml
52 lines (52 loc) · 1.7 KB
/
.goreleaser-windows.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
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
project_name: cpm
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- windows
goarch:
- amd64
- arm64
archives:
- format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
chocolateys:
-
name: cpm
owners: COZ
title: Contract Package Manager
authors: Erik van den Brink
project_url: https://github.com/CityOfZion/cpm
url_template: "https://github.com/CityOfZion/cpm/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
license_url: https://github.com/CityOfZion/cpm/blob/master/LICENSE
copyright: 2023 COZ
require_license_acceptance: false
project_source_url: https://github.com/CityOfZion/cpm
docs_url: https://github.com/CityOfZion/cpm/blob/master/README.md
bug_tracker_url: https://github.com/CityOfZion/cpm/issues
tags: 'neo neo3 blockchain contract package-manager manager sdk golang csharp python java typescript ts'
summary: NEO Blockchain Contract Package Manager
description: |
{{ .ProjectName }} installer package.
Download selected contracts from a chain to your local chain for development purposes.
Generate SDKs for selected contracts to work with.
release_notes: "https://github.com/CityOfZion/cpm/releases/tag/v{{ .Version }}"
api_key: '{{ .Env.CHOCOLATEY_API_KEY }}'
source_repo: "https://push.chocolatey.org/"
skip_publish: false