File tree Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Expand file tree Collapse file tree 3 files changed +18
-7
lines changed Original file line number Diff line number Diff line change
1
+ changelog :
2
+ exclude :
3
+ labels :
4
+ - ignore-for-release
5
+ categories :
6
+ - title : Changes
7
+ labels :
8
+ - " *"
Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ name: Build
2
2
3
3
on :
4
4
push :
5
- branches : [ localstack-poc ]
5
+ branches : [ localstack ]
6
+ tags : v*.*
6
7
pull_request :
7
- branches : [ localstack-poc ]
8
+ branches : [ localstack ]
8
9
9
10
jobs :
10
11
25
26
with :
26
27
name : aws-lambda-rie
27
28
path : bin/*
28
-
29
+ - name : Release binaries
30
+ uses : softprops/action-gh-release@v1
31
+ if : startsWith(github.ref, 'refs/tags/')
32
+ with :
33
+ files : bin/*
34
+ generate_release_notes : true
35
+ prerelease : ${{ endsWith(github.ref, '-pre') }}
Original file line number Diff line number Diff line change 6
6
7
7
BINARY_NAME =aws-lambda-rie
8
8
ARCH =x86_64
9
- GO_ARCH_old := amd64
10
9
GO_ARCH_x86_64 := amd64
11
10
GO_ARCH_arm64 := arm64
12
- DESTINATION_old: = bin/${BINARY_NAME}
13
11
DESTINATION_x86_64 := bin/${BINARY_NAME}-x86_64
14
12
DESTINATION_arm64 := bin/${BINARY_NAME}-arm64
15
13
16
14
compile-with-docker-all :
17
15
make ARCH=x86_64 compile-with-docker
18
16
make ARCH=arm64 compile-with-docker
19
- make ARCH=old compile-with-docker
20
17
21
18
compile-lambda-linux-all :
22
19
make ARCH=x86_64 compile-lambda-linux
23
20
make ARCH=arm64 compile-lambda-linux
24
- make ARCH=old compile-lambda-linux
25
21
26
22
compile-with-docker :
27
23
docker run --env GOPROXY=direct -v $(shell pwd) :/LambdaRuntimeLocal -w /LambdaRuntimeLocal golang:1.17 make ARCH=${ARCH} compile-lambda-linux
You can’t perform that action at this time.
0 commit comments