File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 11
11
description : " Version to use for further development"
12
12
required : true
13
13
default : " X.Y.Z-RIE"
14
-
15
14
jobs :
16
15
Release :
17
16
environment : Release
18
17
runs-on : ubuntu-latest
19
18
steps :
20
- - uses : actions/checkout@v3
19
+ - uses : actions/checkout@v4
21
20
- name : Configure Git User # may be removed after https://github.com/actions/checkout/issues/13 is resolved
22
21
run : |
23
22
git config user.email "${{ github.actor }}@users.noreply.github.com"
@@ -27,15 +26,15 @@ jobs:
27
26
with :
28
27
python-version : ' 3.11'
29
28
- name : Build
30
- run : make compile-with-docker-all
29
+ run : make compile-with-docker-all # they are all in is bin/aws-lambda-rie*
31
30
- name : Release
32
- uses : softprops/action-gh-release@v2
33
- if : startsWith(github.ref, 'refs/tags/')
31
+ uses : softprops/action-gh-release@v2 # this triggers release if the assets are tagged with refs/tags
32
+ # if: startsWith(github.ref, 'refs/tags/')
34
33
with :
35
34
files : |
36
- aws-lambda-rie
37
- aws-lambda-rie-arm64
38
- aws-lambda-rie-x64
35
+ bin/ aws-lambda-rie
36
+ bin/ aws-lambda-rie-arm64
37
+ bin/ aws-lambda-rie-x64
39
38
# --------
40
39
# Add a step to upload each binary asset
41
40
# - name: Upload aws-lambda-rie
You can’t perform that action at this time.
0 commit comments