Skip to content

Commit f1f9b20

Browse files
committed
comment revisions
1 parent 4836386 commit f1f9b20

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/release.yml

+10-9
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,31 @@ on:
77
description: "Version to use for the release."
88
required: true
99
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"
1414
jobs:
1515
Release:
1616
environment: Release
1717
runs-on: ubuntu-latest
1818
steps:
1919
- 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'
2422
- name: Set up python
2523
uses: actions/setup-python@v5
2624
with:
2725
python-version: '3.11'
2826
- name: Build
2927
run: make compile-with-docker-all
28+
- name: Run Tests
29+
run: | # have to set up python?
30+
make tests-with-docker
3031
- name: Release
3132
uses: softprops/action-gh-release@v2
3233
with:
33-
tag_name: ${{ github.event.inputs.releaseVersion }}
34+
tag_name: v${{ github.event.inputs.releaseVersion }}
3435
files: |
3536
bin/aws-lambda-rie
3637
bin/aws-lambda-rie-arm64

0 commit comments

Comments
 (0)