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
22
33on :
44 push :
5- branches : [ localstack-poc ]
5+ branches : [ localstack ]
6+ tags : v*.*
67 pull_request :
7- branches : [ localstack-poc ]
8+ branches : [ localstack ]
89
910jobs :
1011
2526 with :
2627 name : aws-lambda-rie
2728 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 66
77BINARY_NAME =aws-lambda-rie
88ARCH =x86_64
9- GO_ARCH_old := amd64
109GO_ARCH_x86_64 := amd64
1110GO_ARCH_arm64 := arm64
12- DESTINATION_old: = bin/${BINARY_NAME}
1311DESTINATION_x86_64 := bin/${BINARY_NAME}-x86_64
1412DESTINATION_arm64 := bin/${BINARY_NAME}-arm64
1513
1614compile-with-docker-all :
1715 make ARCH=x86_64 compile-with-docker
1816 make ARCH=arm64 compile-with-docker
19- make ARCH=old compile-with-docker
2017
2118compile-lambda-linux-all :
2219 make ARCH=x86_64 compile-lambda-linux
2320 make ARCH=arm64 compile-lambda-linux
24- make ARCH=old compile-lambda-linux
2521
2622compile-with-docker :
2723 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