File tree Expand file tree Collapse file tree 4 files changed +3
-13
lines changed Expand file tree Collapse file tree 4 files changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ set -euo pipefail
5
5
# Publishes the created artifacts from GoReleaser to AWS as AWS Lambda Layers in every region.
6
6
# Finalized by generating an ARN table which will be used in the release notes.
7
7
#
8
+ exit 0
8
9
9
10
export AWS_FOLDER=${AWS_FOLDER:- .aws}
10
11
export SUFFIX_ARN_FILE=${SUFFIX_ARN_FILE:- arn-file.md}
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ set -euo pipefail
5
5
# Collects all created ARN tables created by .ci/publish-aws.sh script
6
6
# and publishes a GitHub Release Note with the given information.
7
7
#
8
+ exit 0
8
9
9
10
export SUFFIX_ARN_FILE=${SUFFIX_ARN_FILE:- arn-file.md}
10
11
VERSION=${VERSION:? Please provide VERSION environment variable. e.g. current git tag}
Original file line number Diff line number Diff line change @@ -82,18 +82,6 @@ docker_manifests:
82
82
- " {{ .Env.DOCKER_REGISTRY }}/{{ .Env.DOCKER_IMAGE_NAME }}-x86_64:latest"
83
83
- " {{ .Env.DOCKER_REGISTRY }}/{{ .Env.DOCKER_IMAGE_NAME }}-arm64:latest"
84
84
85
- publishers :
86
- - name : publish-aws
87
- cmd : ./.ci/publish-aws.sh
88
- env :
89
- - AWS_ACCESS_KEY_ID={{ .Env.AWS_ACCESS_KEY_ID }}
90
- - AWS_SECRET_ACCESS_KEY={{ .Env.AWS_SECRET_ACCESS_KEY }}
91
- - ELASTIC_LAYER_NAME=elastic-apm-extension-ver-{{ replace (trimprefix .Tag "v") "." "-" }}
92
- - VERSION={{ .Tag }}
93
- - ARCHITECTURE={{ if eq .Arch "amd64" }}x86_64{{ else }}{{ .Arch }}{{ end }}
94
- - GOOS={{ .Os }}
95
- - GOARCH={{ .Arch }}
96
- - AWS_FOLDER=.aws-{{ .Os }}-{{ .Arch }}
97
85
release :
98
86
# Custom GitHub release
99
87
disable : true
Original file line number Diff line number Diff line change 23
23
24
24
.PHONY : release
25
25
release :
26
- go run github.com/goreleaser/goreleaser@$(GORELEASER_VERSION ) release --clean --skip-publish --skip- validate --skip-before
26
+ go run github.com/goreleaser/goreleaser@$(GORELEASER_VERSION ) release --clean --skip-validate --skip-before
27
27
28
28
.PHONY : release-notes
29
29
release-notes :
You can’t perform that action at this time.
0 commit comments