File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 7
7
description : " Version to use for the release."
8
8
required : true
9
9
default : " X.Y.Z"
10
- developmentVersion :
11
- description : " Version to use for further development"
12
- required : true
13
- default : " X.Y.Z-RIE"
10
+ # developmentVersion: #this could be the release notes??
11
+ # description: "Version to use for further development"
12
+ # required: true
13
+ # default: "X.Y.Z-RIE"
14
14
jobs :
15
15
Release :
16
16
environment : Release
17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- uses : actions/checkout@v4
20
- - name : Configure Git User # may be removed after https://github.com/actions/checkout/issues/13 is resolved
21
- run : |
22
- git config user.email "${{ github.actor }}@users.noreply.github.com"
23
- git config user.name "${{ github.actor }}"
20
+ with :
21
+ ref : ' main'
24
22
- name : Set up python
25
23
uses : actions/setup-python@v5
26
24
with :
27
25
python-version : ' 3.11'
28
26
- name : Build
29
27
run : make compile-with-docker-all
28
+ - name : Run Tests
29
+ run : | # have to set up python?
30
+ make tests-with-docker
30
31
- name : Release
31
32
uses : softprops/action-gh-release@v2
32
33
with :
33
- tag_name : ${{ github.event.inputs.releaseVersion }}
34
+ tag_name : v ${{ github.event.inputs.releaseVersion }}
34
35
files : |
35
36
bin/aws-lambda-rie
36
37
bin/aws-lambda-rie-arm64
You can’t perform that action at this time.
0 commit comments