forked from aws/aws-sam-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
59 lines (53 loc) · 1.31 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
# Build customization
project_name: sam
builds:
-
binary: sam
goos:
- windows
- darwin
- linux
goarch:
- amd64
- 386
#hooks:
# post: ./distribution/npm/npm-release.sh
archive:
format: tar.gz
files:
- LICENSE
- NOTICE
# Publish to Github Releases
release:
github:
owner: awslabs
name: aws-sam-local
# Don't auto-publish the release. Admin has to manually publish at right time
# Setting to true will also prevent brew from being published
draft: false
# homebrew release
#brew:
#
# # repository to push the tap to.
# folder: Formula
# github:
# owner: awslabs
# name: homebrew-tap
#
# homepage: "https://github.com/awslabs/aws-sam-local"
# description: "Develop and test your serverless applications locally without uploading to AWS Lambda"
# test: |
# output = shell_output(bin/"sam --version")
# assert_match "sam version #{version}", output
#
# install: |
# bin.install "aws-sam-local"
fpm:
vendor: Amazon Web Services
homepage: https://github.com/awslabs/aws-sam-local
maintainer: [email protected]
description: AWS SAM Local is a CLI tool for developing, testing and deploying Serverless applications.
license: Apache 2.0
formats:
- deb
- rpm